Skip to content

Commit 3a56083

Browse files
Merge pull request #22 from egraphs-good/saulshanabrook-patch-1
Fix cost values in integration_test.rs
2 parents bf6e632 + 1ac3b11 commit 3a56083

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ fn test_extract() {
1616
(extract (Num 2))
1717
1818
(push)
19-
(set-cost (Add (Num 1) (Num 1)) 801)
19+
(set-cost (Add (Num 1) (Num 1)) 800)
2020
(extract (Num 2))
2121
(pop)
2222
2323
(push)
24-
(set-cost (Add (Num 1) (Num 1)) 799)
24+
(set-cost (Add (Num 1) (Num 1)) 798)
2525
(extract (Num 2))
2626
(pop)
2727

0 commit comments

Comments
 (0)