aboutsummaryrefslogtreecommitdiffstats
path: root/flocq/Prop/Fprop_Sterbenz.v
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@inria.fr>2019-02-13 18:53:17 +0100
committerXavier Leroy <xavierleroy@users.noreply.github.com>2019-03-27 11:38:25 +0100
commit0f919eb26c68d3882e612a1b3a9df45bee6d3624 (patch)
treeb8bcf57e06d761be09b8d2cf2f80741acb1e4949 /flocq/Prop/Fprop_Sterbenz.v
parentd5c0b4054c8490bda3b3d191724c58d5d4002e58 (diff)
downloadcompcert-0f919eb26c68d3882e612a1b3a9df45bee6d3624.tar.gz
compcert-0f919eb26c68d3882e612a1b3a9df45bee6d3624.zip
Upgrade embedded version of Flocq to 3.1.
Main changes to CompCert outside of Flocq are as follows: - Minimal supported version of Coq is now 8.7, due to Flocq requirements. - Most modifications are due to Z2R being dropped in favor of IZR and to the way Flocq now handles NaNs. - CompCert now correctly handles NaNs for the Risc-V architecture (hopefully).
Diffstat (limited to 'flocq/Prop/Fprop_Sterbenz.v')
-rw-r--r--flocq/Prop/Fprop_Sterbenz.v169
1 files changed, 0 insertions, 169 deletions
diff --git a/flocq/Prop/Fprop_Sterbenz.v b/flocq/Prop/Fprop_Sterbenz.v
deleted file mode 100644
index 4e74f889..00000000
--- a/flocq/Prop/Fprop_Sterbenz.v
+++ /dev/null
@@ -1,169 +0,0 @@
-(**
-This file is part of the Flocq formalization of floating-point
-arithmetic in Coq: http://flocq.gforge.inria.fr/
-
-Copyright (C) 2010-2013 Sylvie Boldo
-#<br />#
-Copyright (C) 2010-2013 Guillaume Melquiond
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 3 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-COPYING file for more details.
-*)
-
-(** * Sterbenz conditions for exact subtraction *)
-
-Require Import Fcore_Raux.
-Require Import Fcore_defs.
-Require Import Fcore_generic_fmt.
-Require Import Fcalc_ops.
-
-Section Fprop_Sterbenz.
-
-Variable beta : radix.
-Notation bpow e := (bpow beta e).
-
-Variable fexp : Z -> Z.
-Context { valid_exp : Valid_exp fexp }.
-Context { monotone_exp : Monotone_exp fexp }.
-Notation format := (generic_format beta fexp).
-
-Theorem generic_format_plus :
- forall x y,
- format x -> format y ->
- (Rabs (x + y) < bpow (Zmin (ln_beta beta x) (ln_beta beta y)))%R ->
- format (x + y)%R.
-Proof.
-intros x y Fx Fy Hxy.
-destruct (Req_dec (x + y) 0) as [Zxy|Zxy].
-rewrite Zxy.
-apply generic_format_0.
-destruct (Req_dec x R0) as [Zx|Zx].
-now rewrite Zx, Rplus_0_l.
-destruct (Req_dec y R0) as [Zy|Zy].
-now rewrite Zy, Rplus_0_r.
-revert Hxy.
-destruct (ln_beta beta x) as (ex, Ex). simpl.
-specialize (Ex Zx).
-destruct (ln_beta beta y) as (ey, Ey). simpl.
-specialize (Ey Zy).
-intros Hxy.
-set (fx := Float beta (Ztrunc (scaled_mantissa beta fexp x)) (fexp ex)).
-assert (Hx: x = F2R fx).
-rewrite Fx at 1.
-unfold canonic_exp.
-now rewrite ln_beta_unique with (1 := Ex).
-set (fy := Float beta (Ztrunc (scaled_mantissa beta fexp y)) (fexp ey)).
-assert (Hy: y = F2R fy).
-rewrite Fy at 1.
-unfold canonic_exp.
-now rewrite ln_beta_unique with (1 := Ey).
-rewrite Hx, Hy.
-rewrite <- F2R_plus.
-apply generic_format_F2R.
-intros _.
-case_eq (Fplus beta fx fy).
-intros mxy exy Pxy.
-rewrite <- Pxy, F2R_plus, <- Hx, <- Hy.
-unfold canonic_exp.
-replace exy with (fexp (Zmin ex ey)).
-apply monotone_exp.
-now apply ln_beta_le_bpow.
-replace exy with (Fexp (Fplus beta fx fy)) by exact (f_equal Fexp Pxy).
-rewrite Fexp_Fplus.
-simpl. clear -monotone_exp.
-apply sym_eq.
-destruct (Zmin_spec ex ey) as [(H1,H2)|(H1,H2)] ; rewrite H2.
-apply Zmin_l.
-now apply monotone_exp.
-apply Zmin_r.
-apply monotone_exp.
-apply Zlt_le_weak.
-now apply Zgt_lt.
-Qed.
-
-Theorem generic_format_plus_weak :
- forall x y,
- format x -> format y ->
- (Rabs (x + y) <= Rmin (Rabs x) (Rabs y))%R ->
- format (x + y)%R.
-Proof.
-intros x y Fx Fy Hxy.
-destruct (Req_dec x R0) as [Zx|Zx].
-now rewrite Zx, Rplus_0_l.
-destruct (Req_dec y R0) as [Zy|Zy].
-now rewrite Zy, Rplus_0_r.
-apply generic_format_plus ; try assumption.
-apply Rle_lt_trans with (1 := Hxy).
-unfold Rmin.
-destruct (Rle_dec (Rabs x) (Rabs y)) as [Hxy'|Hxy'].
-rewrite Zmin_l.
-destruct (ln_beta beta x) as (ex, Hx).
-now apply Hx.
-now apply ln_beta_le_abs.
-rewrite Zmin_r.
-destruct (ln_beta beta y) as (ex, Hy).
-now apply Hy.
-apply ln_beta_le_abs.
-exact Zy.
-apply Rlt_le.
-now apply Rnot_le_lt.
-Qed.
-
-Lemma sterbenz_aux :
- forall x y, format x -> format y ->
- (y <= x <= 2 * y)%R ->
- format (x - y)%R.
-Proof.
-intros x y Hx Hy (Hxy1, Hxy2).
-unfold Rminus.
-apply generic_format_plus_weak.
-exact Hx.
-now apply generic_format_opp.
-rewrite Rabs_pos_eq.
-rewrite Rabs_Ropp.
-rewrite Rmin_comm.
-assert (Hy0: (0 <= y)%R).
-apply Rplus_le_reg_r with y.
-apply Rle_trans with x.
-now rewrite Rplus_0_l.
-now replace (y + y)%R with (2 * y)%R by ring.
-rewrite Rabs_pos_eq with (1 := Hy0).
-rewrite Rabs_pos_eq.
-unfold Rmin.
-destruct (Rle_dec y x) as [Hyx|Hyx].
-apply Rplus_le_reg_r with y.
-now ring_simplify.
-now elim Hyx.
-now apply Rle_trans with y.
-now apply Rle_0_minus.
-Qed.
-
-Theorem sterbenz :
- forall x y, format x -> format y ->
- (y / 2 <= x <= 2 * y)%R ->
- format (x - y)%R.
-Proof.
-intros x y Hx Hy (Hxy1, Hxy2).
-destruct (Rle_or_lt x y) as [Hxy|Hxy].
-rewrite <- Ropp_minus_distr.
-apply generic_format_opp.
-apply sterbenz_aux ; try easy.
-split.
-exact Hxy.
-apply Rcompare_not_Lt_inv.
-rewrite <- Rcompare_half_r.
-now apply Rcompare_not_Lt.
-apply sterbenz_aux ; try easy.
-split.
-now apply Rlt_le.
-exact Hxy2.
-Qed.
-
-End Fprop_Sterbenz.