Skip to content

Commit

Permalink
Resolve non-determinism in minInt (#4544)
Browse files Browse the repository at this point in the history
Fixes #4543
  • Loading branch information
geo2a authored Jul 23, 2024
1 parent 3435a3c commit ce19f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k-distribution/include/kframework/builtin/domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ module INT
((I1 %Int absInt(I2)) +Int absInt(I2)) %Int absInt(I2)
requires I2 =/=Int 0 [concrete, simplification]
rule minInt(I1:Int, I2:Int) => I1 requires I1 <=Int I2
rule minInt(I1:Int, I2:Int) => I1 requires I1 <Int I2
rule minInt(I1:Int, I2:Int) => I2 requires I1 >=Int I2
rule I1:Int =/=Int I2:Int => notBool (I1 ==Int I2)
Expand Down

0 comments on commit ce19f5e

Please sign in to comment.