Trait tract_pulse::internal::Runtime  
pub trait Runtime: Debug {
    // Required methods
    fn name(&self) -> Cow<'_, str>;
    fn prepare(
        &self,
        model: Graph<TypedFact, Box<dyn TypedOp>>
    ) -> Result<Box<dyn Runnable>, Error>;
}