Struct mosek::Solsta

source ·
#[non_exhaustive]
pub struct Solsta;
Expand description

Solution status keys

Implementations§

source§

impl Solsta

source

pub const UNKNOWN: i32 = 0i32

Status of the solution is unknown.

source

pub const OPTIMAL: i32 = 1i32

The solution is optimal.

source

pub const PRIM_FEAS: i32 = 2i32

The solution is primal feasible.

source

pub const DUAL_FEAS: i32 = 3i32

The solution is dual feasible.

source

pub const PRIM_AND_DUAL_FEAS: i32 = 4i32

The solution is both primal and dual feasible.

source

pub const PRIM_INFEAS_CER: i32 = 5i32

The solution is a certificate of primal infeasibility.

source

pub const DUAL_INFEAS_CER: i32 = 6i32

The solution is a certificate of dual infeasibility.

source

pub const PRIM_ILLPOSED_CER: i32 = 7i32

The solution is a certificate that the primal problem is illposed.

source

pub const DUAL_ILLPOSED_CER: i32 = 8i32

The solution is a certificate that the dual problem is illposed.

source

pub const INTEGER_OPTIMAL: i32 = 9i32

The primal solution is integer optimal.

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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.