pub struct Problem {
pub net: PetriNet,
pub u0: State,
pub tspan: [f64; 2],
pub rates: HashMap<String, f64>,
pub f: ODEFunc,
pub state_labels: Vec<String>,
/* private fields */
}Expand description
An ODE initial value problem for a Petri net.
Fields§
§net: PetriNet§u0: State§tspan: [f64; 2]§rates: HashMap<String, f64>§f: ODEFunc§state_labels: Vec<String>Implementations§
Auto Trait Implementations§
impl Freeze for Problem
impl !RefUnwindSafe for Problem
impl !Send for Problem
impl !Sync for Problem
impl Unpin for Problem
impl UnsafeUnpin for Problem
impl !UnwindSafe for Problem
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