File tree Expand file tree Collapse file tree 5 files changed +3
-165
lines changed
Expand file tree Collapse file tree 5 files changed +3
-165
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ pub fn new_experimental_egraph() -> EGraph {
3030 add_set_cost ( & mut egraph) ;
3131 egraph. add_primitive ( GetSizePrimitive ) ;
3232
33+ // Comment this out for now since the run-schedule in experimental doesn't support equality facts
3334 // egraph
3435 // .add_command("run-schedule".into(), Arc::new(RunExtendedSchedule))
3536 // .unwrap();
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ impl BaseSort for SMTReal {
216216 }
217217 ) ;
218218 // (min-ast-size a b)
219- // Returns the SMT term with the samller AST size. It biases towards the first argument in case of a tie.
219+ // Returns the SMT term with the smaller AST size. It biases towards the first argument in case of a tie.
220220 add_primitive ! (
221221 eg,
222222 "min-by-ast-size" = |a: SMTRealValue , b: SMTRealValue | -> SMTRealValue {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2121 (Const f64)
2222 (Var String))
2323
24- ; Need to table for all math expressions since egglog does not allow unbound variables
24+ ; Need to track all math expressions since egglog does not allow unbound variables
2525(relation MathU (Math))
2626(rule ((= e (Diff x y))) ((MathU e)))
2727(rule ((= e (Integral x y))) ((MathU e)))
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments