MCPcopy Create free account
hub / github.com/ComputationalRobotics/XM-code / L1SolverOptions

Class L1SolverOptions

deps/glomap/glomap/math/l1_solver.h:19–28  ·  view source on GitHub ↗

TODO: L1 solver for dense matrix

Source from the content-addressed store, hash-verified

17
18// TODO: L1 solver for dense matrix
19struct L1SolverOptions {
20 int max_num_iterations = 1000;
21 // Rho is the augmented Lagrangian parameter.
22 double rho = 1.0;
23 // Alpha is the over-relaxation parameter (typically between 1.0 and 1.8).
24 double alpha = 1.0;
25
26 double absolute_tolerance = 1e-4;
27 double relative_tolerance = 1e-2;
28};
29
30template <class MatrixType>
31class L1Solver {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected