solver
SolverParams.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 namespace solver {
12 
15  // Branch and Bound solver
16  SolverIntParam_BnBMaxIters,
17 
18  // Equilibration parameters
19  SolverIntParam_EquilibrationIters,
20 
21  // Linear System parameters
22  SolverIntParam_NumIterRefinementsLinSolve,
23 
24  // Model parameters
25  SolverIntParam_MaxIters,
26  SolverIntParam_WarmStartIters,
27  SolverIntParam_SolverMaxIters,
28  SolverIntParam_NumberRefinementsTrustRegion,
29 
30  // Variable parameters
31  SolverIntParam_ColNum,
32 
33  // OptimizationInfo parameters
34  SolverIntParam_NumIter,
35  SolverIntParam_NumRefsLinSolve,
36  SolverIntParam_NumRefsLinSolveAffine,
37  SolverIntParam_NumRefsLinSolveCorrector,
38  };
39 
42  SolverBoolParam_Verbose,
43  SolverBoolParam_BnBVerbose
44  };
45 
48  // Branch and Bound solver
49  SolverDoubleParam_BnBIntegerTol,
50  SolverDoubleParam_BnBAbsSubOptGap,
51  SolverDoubleParam_BnBRelSubOptGap,
52 
53  // Convergence tolerances
54  SolverDoubleParam_FeasibilityTol,
55  SolverDoubleParam_DualityGapAbsTol,
56  SolverDoubleParam_DualityGapRelTol,
57  SolverDoubleParam_FeasibilityTolInacc,
58  SolverDoubleParam_DualityGapAbsTolInacc,
59  SolverDoubleParam_DualityGapRelTolInacc,
60 
61  // Linear System parameters
62  SolverDoubleParam_LinearSystemAccuracy,
63  SolverDoubleParam_ErrorReductionFactor,
64  SolverDoubleParam_StaticRegularization,
65  SolverDoubleParam_DynamicRegularization,
66  SolverDoubleParam_DynamicRegularizationThresh,
67 
68  // Algorithm parameters
69  SolverDoubleParam_SafeGuard,
70  SolverDoubleParam_MinimumStepLength,
71  SolverDoubleParam_MaximumStepLength,
72  SolverDoubleParam_StepLengthScaling,
73  SolverDoubleParam_MinimumCenteringStep,
74  SolverDoubleParam_MaximumCenteringStep,
75 
76  // Model parameters
77  SolverDoubleParam_TrustRegionThreshold,
78  SolverDoubleParam_SoftConstraintWeightFull,
79  SolverDoubleParam_SoftConstraintWeightReduced,
80 
81  // Variable parameters
82  SolverDoubleParam_X,
83  SolverDoubleParam_LB,
84  SolverDoubleParam_UB,
85  SolverDoubleParam_Guess,
86 
87  // OptimizationInfo parameters
88  SolverDoubleParam_Tau,
89  SolverDoubleParam_Kappa,
90  SolverDoubleParam_DualCost,
91  SolverDoubleParam_PrimalCost,
92  SolverDoubleParam_DualityGap,
93  SolverDoubleParam_KappaOverTau,
94  SolverDoubleParam_DualResidual,
95  SolverDoubleParam_MeritFunction,
96  SolverDoubleParam_PrimalResidual,
97  SolverDoubleParam_DualInfeasibility,
98  SolverDoubleParam_RelativeDualityGap,
99  SolverDoubleParam_PrimalInfeasibility,
100 
101  SolverDoubleParam_StepLength,
102  SolverDoubleParam_AffineStepLength,
103  SolverDoubleParam_CorrectionStepLength,
104  };
105 
106 }
SolverIntParam
Definition: SolverParams.hpp:14
SolverDoubleParam
Definition: SolverParams.hpp:47
Definition: Cone.hpp:20
SolverBoolParam
Definition: SolverParams.hpp:41