TODO: L1 solver for dense matrix
| 17 | |
| 18 | // TODO: L1 solver for dense matrix |
| 19 | struct 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 | |
| 30 | template <class MatrixType> |
| 31 | class L1Solver { |
nothing calls this directly
no outgoing calls
no test coverage detected