|
DiFfRG
|
#include <root_finding.hh>
Public Member Functions | |
| AbstractRootFinder (const FUN &f, const double abs_tol=1e-4, const int max_iter=1000) | |
| void | set_abs_tol (const double abs_tol) |
| void | set_max_iter (const uint max_iter) |
| uint | get_iter () const |
| std::array< double, dim > | search () |
Protected Types | |
| using | FUN = std::function<bool(const std::array<double, dim> &)> |
Protected Member Functions | |
| virtual std::array< double, dim > | search_impl ()=0 |
Protected Attributes | |
| FUN | f |
| double | abs_tol |
| uint | max_iter |
| uint | iter |
|
protected |
|
inline |
|
inline |
|
inline |
|
protectedpure virtual |
|
inline |
|
inline |
|
protected |
|
protected |
|
protected |
|
protected |