pub struct SolutionInfo {
pub obj: f64,
pub rho: f64,
pub upper_bound_p: f64,
pub upper_bound_n: f64,
pub r: f64,
}Expand description
Result of the solver.
Fields§
§obj: f64§rho: f64§upper_bound_p: f64§upper_bound_n: f64§r: f64Extra value for Nu solver: (r1 + r2) / 2.
Trait Implementations§
Source§impl Clone for SolutionInfo
impl Clone for SolutionInfo
Source§fn clone(&self) -> SolutionInfo
fn clone(&self) -> SolutionInfo
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 SolutionInfo
impl RefUnwindSafe for SolutionInfo
impl Send for SolutionInfo
impl Sync for SolutionInfo
impl Unpin for SolutionInfo
impl UnwindSafe for SolutionInfo
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