pub struct Instance<G> {
pub name: Option<String>,
pub graph: G,
pub balances: Vec<f64>,
pub lower: Vec<f64>,
pub upper: Vec<f64>,
pub costs: Vec<f64>,
pub node_names: Vec<String>,
pub edge_names: Vec<String>,
}Expand description
An MCF instance.
Fields§
§name: Option<String>The name of the instance.
graph: GThe graph.
balances: Vec<f64>The node balance.
lower: Vec<f64>The lower bounds.
upper: Vec<f64>The upper bounds.
costs: Vec<f64>The arc costs.
node_names: Vec<String>Names of the nodes.
These are the row names in the MPS file.
edge_names: Vec<String>Names of the edges.
These are the column names in the MPS file.
Auto Trait Implementations§
impl<G> Freeze for Instance<G>where
G: Freeze,
impl<G> RefUnwindSafe for Instance<G>where
G: RefUnwindSafe,
impl<G> Send for Instance<G>where
G: Send,
impl<G> Sync for Instance<G>where
G: Sync,
impl<G> Unpin for Instance<G>where
G: Unpin,
impl<G> UnwindSafe for Instance<G>where
G: 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more