Enum BoolParam

Source
pub enum BoolParam {
Show 25 variants Lifting = 0, EqTrans = 1, TestDualInf = 2, RatFac = 3, UseDecompDualSimplex = 4, ComputeDegen = 5, UseCompDual = 6, ExplicitViol = 7, AcceptCycling = 8, RatRec = 9, PowerScaling = 10, RatFacJump = 11, RowBoundFlips = 12, PersistentScaling = 13, FullPerturbation = 14, EnsureRay = 15, ForceBasic = 16, SimplifierSingletonCols = 17, SimplifierConstraintPropagation = 18, SimplifierParallelRowDetection = 19, SimplifierParallelColDetection = 20, SimplifierSingletonStuffing = 21, SimplifierDualFix = 22, SimplifierFixContinuous = 23, SimplifierDominatedCols = 24,
}
Expand description

Represents the boolean parameters for some LP solver.

Variants§

§

Lifting = 0

Should lifting be used to reduce range of nonzero matrix coefficients?

§

EqTrans = 1

Should LP be transformed to equality form before a rational solve?

§

TestDualInf = 2

Should dual infeasibility be tested in order to try to return a dual solution even if primal infeasible?

§

RatFac = 3

Should a rational factorization be performed after iterative refinement?

§

UseDecompDualSimplex = 4

Should the decomposition based dual simplex be used to solve the LP? Setting this to true forces the solve mode to SOLVEMODE_REAL and the basis representation to REPRESENTATION_ROW

§

ComputeDegen = 5

Should the degeneracy be computed for each basis?

§

UseCompDual = 6

Should the dual of the complementary problem be used in the decomposition simplex?

§

ExplicitViol = 7

Should row and bound violations be computed explicitly in the update of reduced problem in the decomposition simplex

§

AcceptCycling = 8

Should cycling solutions be accepted during iterative refinement?

§

RatRec = 9

Apply rational reconstruction after each iterative refinement?

§

PowerScaling = 10

Round scaling factors for iterative refinement to powers of two?

§

RatFacJump = 11

Continue iterative refinement with exact basic solution if not optimal?

§

RowBoundFlips = 12

Use bound flipping also for row representation?

§

PersistentScaling = 13

Use persistent scaling?

§

FullPerturbation = 14

Perturb the entire problem or only the relevant bounds of a single pivot?

§

EnsureRay = 15

Re-optimize the original problem to get a proof (ray) of infeasibility/unboundedness?

§

ForceBasic = 16

Try to enforce that the optimal solution is a basic solution

§

SimplifierSingletonCols = 17

Enable presolver SingletonCols in PaPILO?

§

SimplifierConstraintPropagation = 18

Enable presolver ConstraintPropagation in PaPILO?

§

SimplifierParallelRowDetection = 19

Enable presolver ParallelRowDetection in PaPILO?

§

SimplifierParallelColDetection = 20

Enable presolver ParallelColDetection in PaPILO?

§

SimplifierSingletonStuffing = 21

Enable presolver SingletonStuffing in PaPILO?

§

SimplifierDualFix = 22

Enable presolver DualFix in PaPILO?

§

SimplifierFixContinuous = 23

Enable presolver FixContinuous in PaPILO?

§

SimplifierDominatedCols = 24

Enable presolver DominatedCols in PaPILO?

Trait Implementations§

Source§

impl Clone for BoolParam

Source§

fn clone(&self) -> BoolParam

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BoolParam

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<BoolParam> for i32

Source§

fn from(param: BoolParam) -> i32

Converts to this type from the input type.
Source§

impl PartialEq for BoolParam

Source§

fn eq(&self, other: &BoolParam) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for BoolParam

Source§

impl Eq for BoolParam

Source§

impl StructuralPartialEq for BoolParam

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.