ATLAS Offline Software
Loading...
Searching...
No Matches
square_root.cxx File Reference
#include "./square_root.h"
#include <cmath>
Include dependency graph for square_root.cxx:

Go to the source code of this file.

Functions

double square_root (double x)

Function Documentation

◆ square_root()

double square_root ( double x)

Definition at line 7 of file square_root.cxx.

7 {
8 if (x < 0 ){return -1.0;}
9 return sqrt(x);
10}
#define x