Skip to content

Commit 3349f3b

Browse files
committed
some fixes
1 parent 05b42bc commit 3349f3b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,18 @@ pub fn new_experimental_egraph() -> EGraph {
2222
// Set up the parser with experimental parse-time macros
2323
egraph.parser = experimental_parser();
2424

25+
// Rational support
2526
add_base_sort(&mut egraph, RationalSort, span!()).unwrap();
27+
28+
// Support for set cost
2629
add_set_cost(&mut egraph);
2730

31+
// unstable-fresh! macro
2832
egraph
2933
.command_macros_mut()
3034
.register(Arc::new(fresh_macro::FreshMacro::new()));
35+
36+
// scheduler support
3137
egraph
3238
.add_command("run-schedule".into(), Arc::new(RunExtendedSchedule))
3339
.unwrap();

0 commit comments

Comments
 (0)