Struct lp_solvers::solvers::cbc::CbcSolver[][src]

pub struct CbcSolver { /* fields omitted */ }

The coin-or cbc solver

Implementations

impl CbcSolver[src]

pub fn new() -> CbcSolver[src]

Crate a cbc solver instance

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

set the name of the executable to use

pub fn with_temp_solution_file(&self, temp_solution_file: String) -> CbcSolver[src]

Set the temporary solution file to use

Trait Implementations

impl Clone for CbcSolver[src]

impl Debug for CbcSolver[src]

impl Default for CbcSolver[src]

impl SolverProgram for CbcSolver[src]

impl SolverWithSolutionParsing for CbcSolver[src]

impl WithMaxSeconds<CbcSolver> for CbcSolver[src]

impl WithNbThreads<CbcSolver> for CbcSolver[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>,