Enum gurobi::Where[][src]

pub enum Where {
    Polling,
    PreSolve {
        coldel: i32,
        rowdel: i32,
        senchg: i32,
        bndchg: i32,
        coecfg: i32,
    },
    Simplex {
        itrcnt: f64,
        objval: f64,
        priminf: f64,
        dualinf: f64,
        ispert: i32,
    },
    MIP {
        objbst: f64,
        objbnd: f64,
        nodcnt: f64,
        solcnt: f64,
        cutcnt: i32,
        nodleft: f64,
        itrcnt: f64,
    },
    MIPSol {
        obj: f64,
        objbst: f64,
        objbnd: f64,
        nodcnt: f64,
        solcnt: f64,
    },
    MIPNode {
        status: i32,
        objbst: f64,
        objbnd: f64,
        nodcnt: f64,
        solcnt: i32,
    },
    Message(String),
    Barrier {
        itrcnt: i32,
        primobj: f64,
        dualobj: f64,
        priminf: f64,
        dualinf: f64,
        compl: f64,
    },
}

Location where the callback called

If you want to get more information, see official manual.

Variants

Periodic polling callback

Currently performing presolve

Fields of PreSolve

The number of columns removed by presolve to this point.

The number of rows removed by presolve to this point.

The number of constraint senses changed by presolve to this point.

The number of variable bounds changed by presolve to this point.

The number of coefficients changed by presolve to this point.

Currently in simplex

Fields of Simplex

Current simplex iteration count.

Current simplex objective value.

Current primal infeasibility.

Current dual infeasibility.

Is problem current perturbed?

Currently in MIP

Fields of MIP

Current best objective.

Current best objective bound.

Current explored node count.

Current count of feasible solutions found.

Current count of cutting planes applied.

Current unexplored node count.

Current simplex iteration count.

Found a new MIP incumbent

Fields of MIPSol

Objective value for new solution.

Current best objective.

Current best objective bound.

Current explored node count.

Current count of feasible solutions found.

Currently exploring a MIP node

Fields of MIPNode

Optimization status of current MIP node (see the Status Code section for further information).

Current best objective.

Current best objective bound.

Current explored node count.

Current count of feasible solutions found.

Printing a log message

Currently in barrier.

Fields of Barrier

Current barrier iteration count.

Primal objective value for current barrier iterate.

Dual objective value for current barrier iterate.

Primal infeasibility for current barrier iterate.

Dual infeasibility for current barrier iterate.

Complementarity violation for current barrier iterate.

Trait Implementations

impl Debug for Where
[src]

Formats the value using the given formatter. Read more

impl Clone for Where
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Into<i32> for Where
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Where

impl Sync for Where