[][src]Struct egg::Iteration

#[non_exhaustive]pub struct Iteration<IterData> {
    pub egraph_nodes: usize,
    pub egraph_classes: usize,
    pub applied: IndexMap<String, usize>,
    pub search_time: f64,
    pub apply_time: f64,
    pub rebuild_time: f64,
    pub total_time: f64,
    pub data: IterData,
    pub n_rebuilds: usize,
    pub stop_reason: Option<StopReason>,
}

Data generated by running a Runner one iteration.

If the serde-1 feature is enabled, this implements serde::Serialize, which is useful if you want to output this as a JSON or some other format.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
egraph_nodes: usize

The number of enodes in the egraph at the start of this iteration.

egraph_classes: usize

The number of eclasses in the egraph at the start of this iteration.

applied: IndexMap<String, usize>

A map from rule name to number of times it was newly applied in this iteration.

search_time: f64

Seconds spent searching in this iteration.

apply_time: f64

Seconds spent applying rules in this iteration.

rebuild_time: f64

Seconds spent rebuilding the egraph in this iteration.

total_time: f64

Total time spent in this iteration, including data generation time.

data: IterData

The user provided annotation for this iteration

n_rebuilds: usize

The number of rebuild iterations done after this iteration completed.

stop_reason: Option<StopReason>

If the runner stopped on this iterations, this is the reason

Trait Implementations

impl<IterData: Clone> Clone for Iteration<IterData>[src]

impl<IterData: Debug> Debug for Iteration<IterData>[src]

Auto Trait Implementations

impl<IterData> RefUnwindSafe for Iteration<IterData> where
    IterData: RefUnwindSafe

impl<IterData> Send for Iteration<IterData> where
    IterData: Send

impl<IterData> Sync for Iteration<IterData> where
    IterData: Sync

impl<IterData> Unpin for Iteration<IterData> where
    IterData: Unpin

impl<IterData> UnwindSafe for Iteration<IterData> where
    IterData: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.