pub struct ExplorationEngine;Implementations§
Source§impl ExplorationEngine
impl ExplorationEngine
Sourcepub fn monte_carlo(
_base: &CircuitDefinition,
count: usize,
) -> Vec<MutationReport>
pub fn monte_carlo( _base: &CircuitDefinition, count: usize, ) -> Vec<MutationReport>
Monte Carlo Analysis: “What if we manufacture 100 units?”
Sourcepub fn sensitivity_analysis(_base: &CircuitDefinition) -> Vec<(String, f32)>
pub fn sensitivity_analysis(_base: &CircuitDefinition) -> Vec<(String, f32)>
Sensitivity Analysis: “Which component matters most?”
Sourcepub fn stability_map(
_base: &CircuitDefinition,
_param: &str,
range: Range<f32>,
) -> Vec<(f32, bool)>
pub fn stability_map( _base: &CircuitDefinition, _param: &str, range: Range<f32>, ) -> Vec<(f32, bool)>
Stability Region Mapping: “Where does the circuit die?”
Auto Trait Implementations§
impl Freeze for ExplorationEngine
impl RefUnwindSafe for ExplorationEngine
impl Send for ExplorationEngine
impl Sync for ExplorationEngine
impl Unpin for ExplorationEngine
impl UnsafeUnpin for ExplorationEngine
impl UnwindSafe for ExplorationEngine
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.