Enum rplex::EnvParam[][src]

pub enum EnvParam {
    Threads(u64),
    ScreenOutput(bool),
    RelativeGap(f64),
    ParallelDeterministic(bool),
    MIPStrategyProbe(i32),
    MIPEmphasis(i32),
    MIPLimitsSolutions(i64),
    MIPLimitsCutPasses(i64),
    MIPStrategyHeuristicFreq(i64),
    TimeLimit(f64),
    DetTimeLimit(f64),
}

Variants

Threads(u64)

Tuple Fields

0: u64

ScreenOutput(bool)

Tuple Fields

0: bool

RelativeGap(f64)

Tuple Fields

0: f64

ParallelDeterministic(bool)

Tuple Fields

0: bool

When true, set CPX_PARALLEL_DETERMINISTIC (default). When false, set CPX_PARALLEL_OPPORTUNISTIC.

MIPStrategyProbe(i32)

Tuple Fields

0: i32

Determines how aggressive the probing phase is. See CPLEX docs

MIPEmphasis(i32)

Tuple Fields

0: i32

From CPLEX docs: “Controls trade-offs between speed, feasibility, optimality, and moving bounds in MIP.”

MIPLimitsSolutions(i64)

Tuple Fields

0: i64

From CPLEX docs: “MIP integer solution limit”

MIPLimitsCutPasses(i64)

Tuple Fields

0: i64

From CPLEX docs: “Number of cutting plane passes”

MIPStrategyHeuristicFreq(i64)

Tuple Fields

0: i64

From CPLEX docs: “MIP heuristic frequency”

TimeLimit(f64)

Tuple Fields

0: f64

DetTimeLimit(f64)

Tuple Fields

0: f64

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.