@@ -147,22 +147,22 @@ Context {R : archiDomainType}.
147147Implicit Type x : R.
148148
149149Lemma ge_floor x : (Num.floor x)%:~R <= x.
150- Proof . exact: Num.Theory.ge_floor . Qed .
150+ Proof . exact: Num.Theory.floor_le_tmp . Qed .
151151
152152#[deprecated(since="mathcomp 2.4.0", note="Use floor_ge_int_tmp instead.")]
153153Lemma floor_ge_int x (z : int) : (z%:~R <= x) = (z <= Num.floor x).
154- Proof . exact: Num.Theory.floor_ge_int . Qed .
154+ Proof . by rewrite floor_ge_int_tmp . Qed .
155155
156156Lemma lt_succ_floor x : x < (Num.floor x + 1)%:~R.
157157Proof . exact: Num.Theory.lt_succ_floor. Qed .
158158
159159#[deprecated(since="mathcomp-analysis 1.3.0", note="use `Num.Theory.le_ceil` instead")]
160160Lemma ceil_ge x : x <= (Num.ceil x)%:~R.
161- Proof . exact: Num.Theory.le_ceil . Qed .
161+ Proof . exact: Num.Theory.ceil_ge . Qed .
162162
163163#[deprecated(since="mathcomp-analysis 1.3.0", note="use `Num.Theory.ceil_le_int`")]
164164Lemma ceil_ge_int x (z : int) : (x <= z%:~R) = (Num.ceil x <= z).
165- Proof . exact: Num.Theory.ceil_le_int . Qed .
165+ Proof . by rewrite Num.Theory.ceil_le_int_tmp . Qed .
166166
167167Lemma ceilN x : Num.ceil (- x) = - Num.floor x.
168168Proof . by rewrite ?ceilNfloor /Num.ceil opprK. Qed .
@@ -331,7 +331,7 @@ by move=> ?; rewrite [RHS]real_ltNge ?realz -?real_floor_ge_int_tmp -?ltNge.
331331Qed .
332332
333333Lemma le_floor : {homo (@Num.floor R) : x y / x <= y}.
334- Proof . exact: floor_le . Qed .
334+ Proof . exact: le_floor . Qed .
335335
336336Lemma real_floor_eq x n : x \is Num.real ->
337337 (Num.floor x == n) = (n%:~R <= x < (n + 1)%:~R).
@@ -392,7 +392,7 @@ by move=> xr; apply/eqP/idP => [<-|]; [exact: real_ceil_itv|exact: ceil_def].
392392Qed .
393393
394394Lemma le_ceil_tmp : {homo (@Num.ceil R) : x y / x <= y}.
395- Proof . exact: ceil_le . Qed .
395+ Proof . exact: le_ceil_tmp . Qed .
396396
397397Lemma real_ceil_ge0 x : x \is Num.real -> (0 <= Num.ceil x) = (-1 < x).
398398Proof .
0 commit comments