![]() |
LINE Solver (C++)
Templated C++ port of the LINE queueing solver
|
Tuning of the outer multiplier iteration. More...
#include <line/util/auglag.h>
Public Attributes | |
| T | rho0 |
| initial penalty parameter | |
| T | rho_factor |
| growth factor applied to rho when needed | |
| T | rho_max |
| cap on rho | |
| T | ctol |
| constraint violation accepted as feasible | |
| T | shrink |
| required violation reduction to leave rho alone | |
| unsigned | max_outer |
| cap on outer iterations | |
| NelderMeadOptions< T > | inner_nm |
| tuning of the simplex inner solver | |
| LevmarOptions< T > | inner_lm |
| tuning of the least-squares inner solver | |
Tuning of the outer multiplier iteration.
| T line::AugLagOptions< T >::ctol |
constraint violation accepted as feasible
Definition at line 72 of file auglag.h.
Referenced by line::auglag_defaults().
| LevmarOptions<T> line::AugLagOptions< T >::inner_lm |
tuning of the least-squares inner solver
Definition at line 76 of file auglag.h.
Referenced by line::auglag_defaults().
| NelderMeadOptions<T> line::AugLagOptions< T >::inner_nm |
tuning of the simplex inner solver
Definition at line 75 of file auglag.h.
Referenced by line::auglag_defaults().
| unsigned line::AugLagOptions< T >::max_outer |
cap on outer iterations
Definition at line 74 of file auglag.h.
Referenced by line::auglag_defaults().
| T line::AugLagOptions< T >::rho0 |
initial penalty parameter
Definition at line 69 of file auglag.h.
Referenced by line::auglag_defaults().
| T line::AugLagOptions< T >::rho_factor |
growth factor applied to rho when needed
Definition at line 70 of file auglag.h.
Referenced by line::auglag_defaults().
| T line::AugLagOptions< T >::rho_max |
| T line::AugLagOptions< T >::shrink |
required violation reduction to leave rho alone
Definition at line 73 of file auglag.h.
Referenced by line::auglag_defaults().