[][src]Struct osqp_sys::OSQPScaling

#[repr(C)]pub struct OSQPScaling {
    pub c: osqp_float,
    pub D: *mut osqp_float,
    pub E: *mut osqp_float,
    pub cinv: osqp_float,
    pub Dinv: *mut osqp_float,
    pub Einv: *mut osqp_float,
}

Problem scaling matrices stored as vectors

Fields

c: osqp_float

< cost function scaling

D: *mut osqp_float

< primal variable scaling

E: *mut osqp_float

< dual variable scaling

cinv: osqp_float

< cost function rescaling

Dinv: *mut osqp_float

< primal variable rescaling

Einv: *mut osqp_float

< dual variable rescaling

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