Skip to content
Snippets Groups Projects
Commit 028eb93c authored by Simon Friis Vindum's avatar Simon Friis Vindum
Browse files

Remove Qp_not_plus_q_ge_1

parent 94a98b3f
No related branches found
No related tags found
1 merge request!187Add Qp lemmas
......@@ -7,6 +7,15 @@ API-breaking change is listed.
and `dom_map_filter_subseteq``dom_filter_subseteq` for consistency's sake.
- Add `max` and `min` operations for `Qp`.
- Add additional lemmas for `Qp`.
- Remove the lemma `Qp_not_plus_q_ge_1` in favor of `Qp_not_plus_ge`.
The following `sed` script should perform most of the renaming
(on macOS, replace `sed` by `gsed`, installed via e.g. `brew install gnu-sed`):
```
sed -i '
s/\bQp_not_plus_q_ge_1\b/Qp_not_plus_ge/g
' $(find theories -name "*.v")
```
## std++ 1.4.0 (released 2020-07-15)
......
......@@ -838,9 +838,6 @@ Proof.
apply Hle, Qp_prf.
Qed.
Lemma Qp_not_plus_q_ge_1 (q: Qp) : ¬ (1 + q)%Qp 1%Qp.
Proof. apply Qp_not_plus_ge. Qed.
Lemma Qp_ge_0 (q: Qp): (0 q)%Qc.
Proof. apply Qclt_le_weak, Qp_prf. Qed.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment