![]() |
LINE Solver (C++)
Templated C++ port of the LINE queueing solver
|
Outcome of a scalar solve. More...
#include <line/util/rootfind.h>
Public Attributes | |
| T | root |
| best estimate of the root | |
| T | value |
| f(root) | |
| T | bracket_width |
| final |b - a|, zero for the unbracketed Newton | |
| unsigned | iterations |
| iterations actually performed | |
| bool | converged |
| tolerance was met before the iteration cap | |
Outcome of a scalar solve.
Definition at line 52 of file rootfind.h.
| T line::RootResult< T >::bracket_width |
final |b - a|, zero for the unbracketed Newton
Definition at line 55 of file rootfind.h.
Referenced by line::root_bisect(), line::root_brent(), line::root_newton(), and line::root_newton_safe().
| bool line::RootResult< T >::converged |
tolerance was met before the iteration cap
Definition at line 57 of file rootfind.h.
Referenced by line::root_bisect(), line::root_brent(), line::root_newton(), line::root_newton_safe(), and line::mva::solver_mva_qsys_analyzer().
| unsigned line::RootResult< T >::iterations |
iterations actually performed
Definition at line 56 of file rootfind.h.
Referenced by line::root_bisect(), line::root_brent(), line::root_newton(), and line::root_newton_safe().
| T line::RootResult< T >::root |
best estimate of the root
Definition at line 53 of file rootfind.h.
Referenced by line::cache::cache_t_lrum_map(), line::cache::cache_ttl_lrua(), line::fj::fj_tail_forktail(), line::fj::fj_tail_ordstat(), line::qsys::qsys_tandem_ub_ciucu(), line::root_bisect(), line::root_brent(), line::root_newton(), line::root_newton_safe(), and line::mva::solver_mva_qsys_analyzer().
| T line::RootResult< T >::value |
f(root)
Definition at line 54 of file rootfind.h.
Referenced by line::root_bisect(), line::root_brent(), line::root_newton(), and line::root_newton_safe().