Skip to content

Commit

Permalink
Adapt to coq/coq#19530 (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
proux01 authored Sep 19, 2024
1 parent bc0dd54 commit 8688af9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions compcert/lib/IEEE754_extra.v
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,8 @@ Remark bounded_Bexact_inverse:
emin <= e <= emax - prec <-> bounded prec emax Bexact_inverse_mantissa e = true.
Proof.
intros. unfold bounded, canonical_mantissa. rewrite andb_true_iff.
rewrite ?Z.eqb_compare.
fold (Zeq_bool (fexp (Z.pos (digits2_pos Bexact_inverse_mantissa) + e)) e).
rewrite <- Zeq_is_eq_bool. rewrite <- Zle_is_le_bool.
rewrite Bexact_inverse_mantissa_digits2_pos.
unfold fexp, FLT_exp, emin. lia.
Expand Down
2 changes: 2 additions & 0 deletions progs/verif_union.v
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ rewrite andb_true_iff in H.
destruct H as [H H0].
apply Z.leb_le in H0.
unfold SpecFloat.canonical_mantissa in H.
rewrite ?Z.eqb_compare in H.
apply Zeq_bool_eq in H.
unfold FLT.FLT_exp in H.
rewrite Digits.Zpos_digits2_pos in H.
Expand Down Expand Up @@ -219,6 +220,7 @@ destruct e0 as [H' ?H].
assert (-149 <= e). {
clear - H'.
unfold SpecFloat.canonical_mantissa in H'.
rewrite ?Z.eqb_compare in H'.
apply Zeq_bool_eq in H'.
unfold FLT.FLT_exp in H'.
rewrite Digits.Zpos_digits2_pos in H'.
Expand Down
2 changes: 2 additions & 0 deletions progs64/verif_union.v
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ rewrite andb_true_iff in H.
destruct H as [H H0].
apply Z.leb_le in H0.
unfold SpecFloat.canonical_mantissa in H.
rewrite ?Z.eqb_compare in H.
apply Zeq_bool_eq in H.
unfold FLT.FLT_exp in H.
rewrite Digits.Zpos_digits2_pos in H.
Expand Down Expand Up @@ -220,6 +221,7 @@ destruct e0 as [H' ?H].
assert (-149 <= e). {
clear - H'.
unfold SpecFloat.canonical_mantissa in H'.
rewrite ?Z.eqb_compare in H'.
apply Zeq_bool_eq in H'.
unfold FLT.FLT_exp in H'.
rewrite Digits.Zpos_digits2_pos in H'.
Expand Down

0 comments on commit 8688af9

Please sign in to comment.