pub struct GeneratePropagateTestTrace {
pub generated: usize,
pub guesses: usize,
pub propagated: usize,
pub pruned: usize,
pub reduced_program_models: usize,
pub tested: usize,
pub accepted: usize,
pub accepted_world_views: usize,
pub rejected: usize,
pub rejection_reasons: Vec<FaeelNoModelReason>,
}Expand description
Phase counters emitted by bounded Generate-Propagate-Test execution.
Fields§
§generated: usizeNumber of generated candidates.
guesses: usizeNumber of epistemic guesses generated.
propagated: usizeNumber of candidates that survived propagation.
pruned: usizeNumber of candidates pruned during propagation.
reduced_program_models: usizeNumber of reduced-program models inspected by the test phase.
tested: usizeNumber of candidates tested.
accepted: usizeNumber of accepted candidates.
accepted_world_views: usizeNumber of accepted world views.
rejected: usizeNumber of rejected candidates.
rejection_reasons: Vec<FaeelNoModelReason>Rejection reasons observed during propagation and testing.
Trait Implementations§
Source§impl Clone for GeneratePropagateTestTrace
impl Clone for GeneratePropagateTestTrace
Source§fn clone(&self) -> GeneratePropagateTestTrace
fn clone(&self) -> GeneratePropagateTestTrace
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GeneratePropagateTestTrace
impl Debug for GeneratePropagateTestTrace
Source§impl Default for GeneratePropagateTestTrace
impl Default for GeneratePropagateTestTrace
Source§fn default() -> GeneratePropagateTestTrace
fn default() -> GeneratePropagateTestTrace
Returns the “default value” for a type. Read more
impl Eq for GeneratePropagateTestTrace
impl StructuralPartialEq for GeneratePropagateTestTrace
Auto Trait Implementations§
impl Freeze for GeneratePropagateTestTrace
impl RefUnwindSafe for GeneratePropagateTestTrace
impl Send for GeneratePropagateTestTrace
impl Sync for GeneratePropagateTestTrace
impl Unpin for GeneratePropagateTestTrace
impl UnsafeUnpin for GeneratePropagateTestTrace
impl UnwindSafe for GeneratePropagateTestTrace
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more