Skip to content

Commit 4eea5e5

Browse files
nits
1 parent 2271eb0 commit 4eea5e5

File tree

5 files changed

+3
-165
lines changed

5 files changed

+3
-165
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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();

src/smt_real.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

tests/repro-scheduler-scopes.egg

Lines changed: 0 additions & 15 deletions
This file was deleted.

tests/smt-math.egg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
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)))

tests/web-demo/math-backoff.egg

Lines changed: 0 additions & 148 deletions
This file was deleted.

0 commit comments

Comments
 (0)