My Project
bisection.h
1 
9 #ifndef BISECTION_H
10 #define BISECTION_H
11 
13 #define max_error 1E-15
14 
23 double bisection (
24  double (*f)(double x, double Alpha),
25  double Alpha,
26  double x0 = -1E+7,
27  double x1 = 1E+7,
28  double eps = max_error);
29 
30 #endif