Skip to content

Commit 1a4954e

Browse files
committed
Eliminate a warning
1 parent aa630c4 commit 1a4954e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/human_eval_075.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ fn is_multiply_prime(x: u32) -> (ans: bool)
120120
* k);
121121
// prove that that even if the factors are not in the range [2, x], the product is still not equal to x
122122
assert forall|i: int, j: int, k: int|
123-
spec_prime(i) && spec_prime(j) && spec_prime(k) ==> x != i * j * k by {
123+
spec_prime(i) && spec_prime(j) && spec_prime(k) implies x != i * j * k by {
124124
if (i > 1 && j > 1 && k > 1 && (i > x || j > x || k > x)) {
125125
broadcast use group_mul_properties;
126126

0 commit comments

Comments
 (0)