Struct lp_solvers::solvers::gurobi::GurobiSolver[][src]

pub struct GurobiSolver { /* fields omitted */ }

The proprietary gurobi solver

Implementations

impl GurobiSolver[src]

pub fn new() -> GurobiSolver[src]

create a solver instance

pub fn command_name(&self, command_name: String) -> GurobiSolver[src]

set the name of the commandline gurobi executable to use

Trait Implementations

impl Clone for GurobiSolver[src]

impl Debug for GurobiSolver[src]

impl Default for GurobiSolver[src]

impl SolverProgram for GurobiSolver[src]

impl SolverWithSolutionParsing for GurobiSolver[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SolverTrait for T where
    T: SolverWithSolutionParsing + SolverProgram
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,