pub fn eval_order<F, O>(
    model: &Graph<F, O>
) -> Result<Vec<usize, Global>, Error>where
    F: Fact + Clone + 'static,
    O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static,
Expand description

Find an evaluation order for a model, using its default inputs and outputs as boundaries.