Skip to content

Commit 8903578

Browse files
committed
Fix formatting
1 parent 796a1ee commit 8903578

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/human_eval_075.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ fn is_multiply_prime(x: u32) -> (ans: bool)
119119
i <= x && j <= x && k <= x && spec_prime(i) && spec_prime(j) && spec_prime(k) ==> x != i * j
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
122-
assert forall|i: int, j: int, k: int|
123-
spec_prime(i) && spec_prime(j) && spec_prime(k) implies x != i * j * k by {
122+
assert forall|i: int, j: int, k: int| spec_prime(i) && spec_prime(j) && spec_prime(k) implies x
123+
!= 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)