![]() |
LINE Solver (C++)
Templated C++ port of the LINE queueing solver
|
Outcome of a least-squares solve. More...
#include <line/util/levmar.h>
Public Attributes | |
| std::vector< T > | x |
| best point found | |
| std::vector< T > | residual |
| r(x) | |
| T | ssq |
| sum of squares at x, the objective value | |
| unsigned | iterations |
| outer iterations performed | |
| unsigned | evaluations |
| residual evaluations, differencing included | |
| bool | converged |
| a tolerance was met before the caps | |
Outcome of a least-squares solve.
| bool line::LevmarResult< T >::converged |
a tolerance was met before the caps
Definition at line 99 of file levmar.h.
Referenced by line::auglag_ls(), and line::levmar_jac().
| unsigned line::LevmarResult< T >::evaluations |
residual evaluations, differencing included
Definition at line 98 of file levmar.h.
Referenced by line::levmar(), and line::levmar_jac().
| unsigned line::LevmarResult< T >::iterations |
outer iterations performed
Definition at line 97 of file levmar.h.
Referenced by line::levmar_jac().
| std::vector<T> line::LevmarResult< T >::residual |
| T line::LevmarResult< T >::ssq |
sum of squares at x, the objective value
Definition at line 96 of file levmar.h.
Referenced by line::levmar_jac().
| std::vector<T> line::LevmarResult< T >::x |
best point found
Definition at line 94 of file levmar.h.
Referenced by line::auglag_ls(), and line::levmar_jac().