[][src]Struct ecos::kkt

#[repr(C)]
pub struct kkt {
    pub PKPt: *mut spmat,
    pub L: *mut spmat,
    pub D: *mut pfloat,
    pub work1: *mut pfloat,
    pub work2: *mut pfloat,
    pub work3: *mut pfloat,
    pub work4: *mut pfloat,
    pub work5: *mut pfloat,
    pub work6: *mut pfloat,
    pub RHS1: *mut pfloat,
    pub RHS2: *mut pfloat,
    pub dx1: *mut pfloat,
    pub dx2: *mut pfloat,
    pub dy1: *mut pfloat,
    pub dy2: *mut pfloat,
    pub dz1: *mut pfloat,
    pub dz2: *mut pfloat,
    pub P: *mut idxint,
    pub Pinv: *mut idxint,
    pub PK: *mut idxint,
    pub Parent: *mut idxint,
    pub Sign: *mut idxint,
    pub Pattern: *mut idxint,
    pub Flag: *mut idxint,
    pub Lnz: *mut idxint,
    pub delta: pfloat,
}

Fields

PKPt: *mut spmatL: *mut spmatD: *mut pfloatwork1: *mut pfloatwork2: *mut pfloatwork3: *mut pfloatwork4: *mut pfloatwork5: *mut pfloatwork6: *mut pfloatRHS1: *mut pfloatRHS2: *mut pfloatdx1: *mut pfloatdx2: *mut pfloatdy1: *mut pfloatdy2: *mut pfloatdz1: *mut pfloatdz2: *mut pfloatP: *mut idxintPinv: *mut idxintPK: *mut idxintParent: *mut idxintSign: *mut idxintPattern: *mut idxintFlag: *mut idxintLnz: *mut idxintdelta: pfloat

Trait Implementations

impl Clone for kkt[src]

impl Copy for kkt[src]

impl Debug for kkt[src]

Auto Trait Implementations

impl RefUnwindSafe for kkt

impl !Send for kkt

impl !Sync for kkt

impl Unpin for kkt

impl UnwindSafe for kkt

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