Skip to content

Commit 80141fa

Browse files
authored
Greatly reduce the compilation time of src/Arithmetic/BarrettReduction.v. (#1919)
1 parent ea55d04 commit 80141fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Arithmetic/BarrettReduction.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Section Generic.
101101
rewrite xt_correct, q1_correct, q3_correct by auto with lia.
102102
assert (exists cond : bool, ((mu * (x / b^(k-1))) / b^(k+1)) = x / M + (if cond then -1 else 0)) as Hq3.
103103
{ destruct q_nice_strong with (b:=b) (k:=k) (m:=mu) (offset:=1) (a:=x) (n:=M) as [cond Hcond];
104-
eauto using Z.lt_gt with zarith. }
104+
eauto 2 using Z.lt_gt with zarith. }
105105
eauto using r_correct with lia.
106106
Qed.
107107
End Generic.

0 commit comments

Comments
 (0)