pub struct AstDepth;Expand description
A simple CostFunction that counts maximum ast depth.
let e: RecExpr<SymbolLang> = "(do_it foo bar baz)".parse().unwrap();
assert_eq!(AstDepth.cost_rec(&e), 2);Trait Implementations§
source§impl<L: Language> CostFunction<L> for AstDepth
impl<L: Language> CostFunction<L> for AstDepth
§type Cost = usize
type Cost = usize
The
Cost type. It only requires PartialOrd so you can use
floating point types, but failed comparisons (NaNs) will
result in a panic. Read more