Sequence of Bisect implementations
Bisect7.cpp File Reference
#include <array>
#include <cmath>
#include <functional>
#include <iostream>
#include <map>
Include dependency graph for Bisect7.cpp:

Go to the source code of this file.

Functions

double f (const double x)
 
double g (const double x)
 
double h (const double x)
 
double t (const double x)
 
double Bisect (double a, double b, double eps)
 
double Bisect (double a, double b)
 
double Bisect (const std::function< double(double)> &func, double a, double b, double eps)
 
int main ()
 

Function Documentation

◆ Bisect() [1/3]

double Bisect ( const std::function< double(double)> &  func,
double  a,
double  b,
double  eps 
)

Definition at line 134 of file Bisect7.cpp.

Here is the call graph for this function:

◆ Bisect() [2/3]

double Bisect ( double  a,
double  b 
)

Definition at line 146 of file Bisect6.cpp.

◆ Bisect() [3/3]

double Bisect ( double  a,
double  b,
double  eps 
)

Definition at line 124 of file Bisect6.cpp.

Here is the caller graph for this function:

◆ f()

double f ( const double  x)

Definition at line 16 of file Bisect7.cpp.

Here is the caller graph for this function:

◆ g()

double g ( const double  x)

Definition at line 21 of file Bisect7.cpp.

Here is the caller graph for this function:

◆ h()

double h ( const double  x)

Definition at line 26 of file Bisect7.cpp.

Here is the caller graph for this function:

◆ main()

int main ( )

Definition at line 45 of file Bisect7.cpp.

Here is the call graph for this function:

◆ t()

double t ( const double  x)

Definition at line 31 of file Bisect7.cpp.

Here is the caller graph for this function: