Skip to content

Commit 7e2732a

Browse files
author
a
committed
adjust master
1 parent 46f2c2f commit 7e2732a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

benchmark/benchmarks.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,12 @@ SUITE["prop_logic"]["freges_theorem"] = @benchmarkable (@assert prove($propositi
7373
SUITE["calc_logic"] = BenchmarkGroup(["egraph", "logic"])
7474

7575
SUITE["calc_logic"]["demorgan"] = @benchmarkable (@assert prove($calculational_logic_theory, $ex_demorgan))
76-
SUITE["calc_logic"]["freges_theorem"] = @benchmarkable (@assert prove($calculational_logic_theory, $ex_frege, 2, 10))
76+
# TODO FIXME After https://github.com/JuliaSymbolics/Metatheory.jl/pull/261/ the order of application of
77+
# matches in ematch_buffer has been reversed. There is likely some issue in rebuilding such that the
78+
# order of application of rules changes the resulting e-graph, while this should not be the case.
79+
# See comments in https://github.com/JuliaSymbolics/Metatheory.jl/pull/261#pullrequestreview-2609050078
80+
SUITE["calc_logic"]["freges_theorem"] =
81+
@benchmarkable (@assert prove($(reverse(calculational_logic_theory)), $ex_frege, 2, 10))
7782

7883
# ==================================================================
7984

0 commit comments

Comments
 (0)