use crateStatable;
/// Represents a computation from a statable to an f32 number
pub type Operation = ;
//pub type Op = fn(&dyn Statable) -> f32;
// pub trait Operation {
// fn evaluate(&self, statable: Box<dyn Statable>) -> f32;
// }
pub type UnaryOperation = ;
pub type BinaryOperation = ;
pub type UnaryScalarOperation = ;
pub type BinaryScalarOperation = ;