File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -229,8 +229,7 @@ Inductive boxed T := Box of T.
229229Reserved Notation "`1- r" (format "`1- r", at level 2).
230230Reserved Notation "f \^-1" (at level 35, format "f \^-1").
231231
232- (* TODO: To be backported to finmap *)
233-
232+ (* PR in progress: https://github.com/math-comp/finmap/pull/149 *)
234233Lemma fset_nat_maximum (X : choiceType) (A : {fset X})
235234 (f : X -> nat) : A != fset0 ->
236235 (exists i, i \in A /\ forall j, j \in A -> f j <= f i)%nat.
@@ -388,16 +387,19 @@ Qed.
388387
389388End order_min.
390389
390+ (* PR in progress: https://github.com/math-comp/math-comp/pull/1515 *)
391391Lemma intrD1 {R : pzRingType} (i : int) : i%:~R + 1 = (i + 1)%:~R :> R.
392392Proof . by rewrite intrD. Qed .
393393
394+ (* PR in progress: https://github.com/math-comp/math-comp/pull/1515 *)
394395Lemma intr1D {R : pzRingType} (i : int) : 1 + i%:~R = (1 + i)%:~R :> R.
395396Proof . by rewrite intrD. Qed .
396397
397398Section trunc_floor_ceil.
398399Context {R : archiRealDomainType}.
399400Implicit Type x : R.
400401
402+ (* PR in progress: https://github.com/math-comp/math-comp/pull/1515 *)
401403Lemma abs_ceil_ge x : `|x| <= `|Num.ceil x|.+1%:R.
402404Proof .
403405rewrite -natr1 natr_absz; have [x0|x0] := ltP 0 x.
You can’t perform that action at this time.
0 commit comments