Skip to content

Commit

Permalink
tests: fix rabin.heyvl
Browse files Browse the repository at this point in the history
Removed a superfluous `compare` statement. It made the proc's pre irrelevant.
  • Loading branch information
Philipp15b authored Mar 21, 2024
1 parent c2f3055 commit f68c682
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/domains/rabin.heyvl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ proc rabin(init_i: UInt, init_n: UInt, init_d: UInt) -> (i: UInt, n: UInt, d: UI
n = init_n
d = init_d
var prob_choice: Bool;
compare ([1 == i] + ([1 < i] * (2/3)));
assert ([1 == i] + ([1 < i] * (2/3)));
havoc d, i, n;
compare ([1 == i] + ([1 < i] * (2/3)));
Expand Down

0 comments on commit f68c682

Please sign in to comment.