Files
fvnn-minijax/src/interpreters/mod.rs
T

14 lines
218 B
Rust
Raw Normal View History

2026-05-26 10:24:33 +02:00
use crate::core::{Primitive, Value};
pub trait Interpreter {
fn process_primitive(&mut self, primitive: Primitive) -> Box<dyn Value>;
}
mod cg;
mod eval;
mod ibp;
pub use cg::*;
pub use eval::*;
pub use ibp::*;