pub struct ColGenResult<DualStore> {
pub obj: f64,
pub column_x: Vec<(f64, ColumnId)>,
pub early_branched: bool,
pub time_limit_reached: bool,
pub infeasible: bool,
pub smoothing_center: Option<(f64, DualStore)>,
}
Expand description
Internal struct storing the results of a column generation iteration
Fields§
§obj: f64
§column_x: Vec<(f64, ColumnId)>
§early_branched: bool
§time_limit_reached: bool
§infeasible: bool
§smoothing_center: Option<(f64, DualStore)>
Auto Trait Implementations§
impl<DualStore> Freeze for ColGenResult<DualStore>where
DualStore: Freeze,
impl<DualStore> RefUnwindSafe for ColGenResult<DualStore>where
DualStore: RefUnwindSafe,
impl<DualStore> Send for ColGenResult<DualStore>where
DualStore: Send,
impl<DualStore> Sync for ColGenResult<DualStore>where
DualStore: Sync,
impl<DualStore> Unpin for ColGenResult<DualStore>where
DualStore: Unpin,
impl<DualStore> UnwindSafe for ColGenResult<DualStore>where
DualStore: UnwindSafe,
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