Skip to main content

reference_eval

Function reference_eval 

Source
pub fn reference_eval(
    program: &Program,
    inputs: &[Value],
) -> Result<Vec<Value>, Error>
Expand description

Execute a vyre IR program on the pure Rust reference interpreter.

The current public Program model is statement-oriented, so this stable entry point delegates to the statement evaluator. Graph-shaped extension nodes use run_storage_graph.