pub trait BaseProblem: Clone + Debug + Send + VerifiableProblem {
    fn d(&self) -> i32;
fn t_end(&self) -> i32;
fn set_t_end(&mut self, t_end: i32); fn inc_t_end(&mut self) { ... } }
Expand description

Trait implemented by all finite-time-horizon problems.

Required methods

Number of dimensions.

Finite, positive time horizon.

Updates the time horizon.

Provided methods

Increases the time horizon by one time step.

Implementors