Skip to content

Commit 5b12505

Browse files
committedApr 17, 2024·
elminated use of Rabs_triang
1 parent 4d5fbe9 commit 5b12505

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed
 

‎coq/FHE/arith.v

+4-9
Original file line numberDiff line numberDiff line change
@@ -1280,19 +1280,15 @@ Proof.
12801280
simpl in H0.
12811281
replace (opp (natmul (opp r) n)) with (natmul r n) in H0 by ring.
12821282
generalize (lerD H H0); intros.
1283-
generalize (Rabs_triang
1283+
generalize (ler_normD
12841284
((nearest_round r)%:~R *+ n + - r *+ n)%R
12851285
((nearest_round (- r *+ n))%:~R + r *+ n)%R); intros.
1286-
move /RleP in H1.
1287-
generalize (Rle_trans _ _ _ H2 H1); intros.
1288-
rewrite Rplus_add in H3.
1286+
generalize (Order.POrderTheory.le_trans H2 H1); intros.
12891287
rewrite -addrA (addrC (-r *+ n) _) -addrA in H3.
12901288
replace (r *+ n + (-r) *+n) with (0 : R) in H3 by ring.
12911289
rewrite addr0 -mulrSr in H3.
12921290
rewrite -rmorphMn -rmorphD /= in H3.
1293-
move /RleP in H3.
1294-
apply Rabs_absz_half in H3.
1295-
apply H3.
1291+
by apply Rabs_absz_half in H3.
12961292
Qed.
12971293

12981294
Lemma nearest_round_mul_abs_nat_opp_not_half1 (r : R) (n : nat) :
@@ -1311,8 +1307,7 @@ Proof.
13111307
generalize (Order.POrderTheory.le_lt_trans H3 H2); intros.
13121308
rewrite -addrA (addrC _(r *+ n.+1)) (addrA (r*-n.+1) _ _) addNr add0r in H4.
13131309
rewrite -mulrSr -rmorphMn -rmorphD /= in H4.
1314-
apply Rabs_absz_half_lt in H4.
1315-
lia.
1310+
by apply Rabs_absz_half_lt in H4.
13161311
Qed.
13171312

13181313
Lemma nearest_round_mul_abs_nat_opp_not_half2 (r : R) (n : nat) :

0 commit comments

Comments
 (0)
Please sign in to comment.