pub trait EddDemo {
// Required methods
fn name(&self) -> &'static str;
fn emc_ref(&self) -> &'static str;
fn step(&mut self, dt: f64);
fn verify_equation(&self) -> bool;
fn get_falsification_status(&self) -> FalsificationStatus;
fn reset(&mut self);
}Expand description
Common trait for all EDD demos.
Required Methods§
Sourcefn verify_equation(&self) -> bool
fn verify_equation(&self) -> bool
Check if the governing equation is currently verified.
Sourcefn get_falsification_status(&self) -> FalsificationStatus
fn get_falsification_status(&self) -> FalsificationStatus
Get the current falsification status.