pub struct SDPSolution {
pub x: Vec<f64>,
pub value: f64,
pub status: SDPStatus,
pub iterations: usize,
}Expand description
SDP solution
Fields§
§x: Vec<f64>Optimal X matrix
value: f64Optimal value
status: SDPStatusSolver status
iterations: usizeNumber of iterations
Trait Implementations§
Source§impl Clone for SDPSolution
impl Clone for SDPSolution
Source§fn clone(&self) -> SDPSolution
fn clone(&self) -> SDPSolution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SDPSolution
impl RefUnwindSafe for SDPSolution
impl Send for SDPSolution
impl Sync for SDPSolution
impl Unpin for SDPSolution
impl UnwindSafe for SDPSolution
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more