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

Outcome of a simplex minimization. More...

#include <line/util/neldermead.h>

Public Attributes

std::vector< T > x
 best point found
fval
 objective there
unsigned iterations
 simplex iterations performed
unsigned evaluations
 objective evaluations
bool converged
 both tolerances met before the caps

Detailed Description

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

Outcome of a simplex minimization.

Definition at line 96 of file neldermead.h.

Member Data Documentation

◆ converged

template<class T>
bool line::NelderMeadResult< T >::converged

both tolerances met before the caps

Definition at line 101 of file neldermead.h.

Referenced by line::auglag(), line::nelder_mead(), and line::nelder_mead_box().

◆ evaluations

template<class T>
unsigned line::NelderMeadResult< T >::evaluations

objective evaluations

Definition at line 100 of file neldermead.h.

Referenced by line::nelder_mead(), and line::nelder_mead_box().

◆ fval

template<class T>
T line::NelderMeadResult< T >::fval

objective there

Definition at line 98 of file neldermead.h.

Referenced by line::mam::amap2_adjust_gamma(), line::nelder_mead(), and line::nelder_mead_box().

◆ iterations

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

simplex iterations performed

Definition at line 99 of file neldermead.h.

Referenced by line::nelder_mead(), and line::nelder_mead_box().

◆ x

template<class T>
std::vector<T> line::NelderMeadResult< T >::x

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