LINE Solver (C++)
Templated C++ port of the LINE queueing solver
Loading...
Searching...
No Matches
line::LevmarResult< T > Struct Template Reference

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)
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

Detailed Description

template<class T>
struct line::LevmarResult< T >

Outcome of a least-squares solve.

Definition at line 93 of file levmar.h.

Member Data Documentation

◆ converged

template<class T>
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().

◆ evaluations

template<class T>
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().

◆ iterations

template<class T>
unsigned line::LevmarResult< T >::iterations

outer iterations performed

Definition at line 97 of file levmar.h.

Referenced by line::levmar_jac().

◆ residual

template<class T>
std::vector<T> line::LevmarResult< T >::residual

r(x)

Definition at line 95 of file levmar.h.

Referenced by line::levmar_jac().

◆ ssq

template<class T>
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().

◆ x

template<class T>
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().


The documentation for this struct was generated from the following file: