pub enum IntParam {
FactorUpdateMax = 4,
IterLimit = 5,
RefLimit = 6,
StallRefLimit = 7,
DisplayFreq = 8,
RatFacMinStalls = 21,
LeastSqMaxRounds = 22,
DecompIterLimit = 24,
DecompMaxAddedRows = 25,
DecompDisplayFreq = 26,
PrintBasisMetric = 28,
}
Expand description
Represents the integer parameters for some LP solver.
Variants§
FactorUpdateMax = 4
Maximum number of updates without fresh factorization
IterLimit = 5
Iteration limit (-1 if unlimited)
RefLimit = 6
Refinement limit (-1 if unlimited)
StallRefLimit = 7
Stalling refinement limit (-1 if unlimited)
DisplayFreq = 8
Display frequency
RatFacMinStalls = 21
Minimum number of stalling refinements since last pivot to trigger rational factorization
LeastSqMaxRounds = 22
Maximum number of conjugate gradient iterations in least square scaling
DecompIterLimit = 24
Number of iterations before the decomposition simplex initialization is terminated
DecompMaxAddedRows = 25
Maximum number of rows added in each iteration of the decomposition based simplex
DecompDisplayFreq = 26
Iteration frequency at which the decomposition solve output is displayed
PrintBasisMetric = 28
Print condition number during the solve
Trait Implementations§
impl Copy for IntParam
impl Eq for IntParam
impl StructuralPartialEq for IntParam
Auto Trait Implementations§
impl Freeze for IntParam
impl RefUnwindSafe for IntParam
impl Send for IntParam
impl Sync for IntParam
impl Unpin for IntParam
impl UnwindSafe for IntParam
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more