Skip to content

Commit

Permalink
Fix ite* rewrite bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Emina Torlak committed Dec 6, 2021
1 parent 3d84cdc commit 9d14d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosette/base/core/polymorphic.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
(match* ((car p) (cdr p))
[(a (expression (== ite) a x _)) (cons a x)]
[(a (expression (== ite) (expression (== @!) a) _ x)) (cons a x)]
[((expression (== @!) a) (expression (== ite) a _ x)) (cons a x)]
[((and (expression (== @!) a) !a) (expression (== ite) a _ x)) (cons !a x)]
[(_ _) p]))


Expand Down

0 comments on commit 9d14d44

Please sign in to comment.