fidget-core 0.4.3

Core infrastructure for Fidget
Documentation
//! Capturing a trace of function evaluation for further optimization
//!
//! Tracing evaluators are run on a single data type and capture a trace of
//! execution, which is the [`Trace` associated type](TracingEvaluator::Trace).
//!
//! The resulting trace can be used to simplify the original function.
//!
//! It is unlikely that you'll want to use these traits or types directly;
//! they're implementation details to minimize code duplication.

use crate::{Error, eval::Tape};

/// Evaluator for single values which simultaneously captures an execution trace
///
/// The trace can later be used to simplify the
/// [`Function`](crate::eval::Function)
/// using [`Function::simplify`](crate::eval::Function::simplify).
///
/// Tracing evaluators may contain intermediate storage (e.g. an array of VM
/// registers), and should be constructed on a per-thread basis.
pub trait TracingEvaluator: Default {
    /// Data type used during evaluation
    type Data: From<f32> + Copy + Clone;

    /// Instruction tape used during evaluation
    ///
    /// This may be a literal instruction tape (in the case of VM evaluation),
    /// or a metaphorical instruction tape (e.g. a JIT function).
    type Tape: Tape<Storage = Self::TapeStorage>;

    /// Associated type for tape storage
    ///
    /// This is a workaround for plumbing purposes
    type TapeStorage;

    /// Associated type for the trace captured during evaluation
    type Trace;

    /// Evaluates the given tape at a particular position
    ///
    /// `vars` should be a slice of values representing input arguments for each
    /// of the tape's variables; use [`Tape::vars`] to map from
    /// [`Var`](crate::var::Var) to position in the list.
    ///
    /// Returns an error if the `var` slice is not of sufficient length.
    fn eval(
        &mut self,
        tape: &Self::Tape,
        vars: &[Self::Data],
    ) -> Result<TracingResult<'_, Self::Data, Self::Trace>, Error>;

    /// Build a new empty evaluator
    fn new() -> Self {
        Self::default()
    }
}

/// Tuple of tracing evaluation result
type TracingResult<'a, Data, Trace> = (&'a [Data], Option<&'a Trace>);