Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
stdpp
Commits
028eb93c
Commit
028eb93c
authored
4 years ago
by
Simon Friis Vindum
Browse files
Options
Downloads
Patches
Plain Diff
Remove Qp_not_plus_q_ge_1
parent
94a98b3f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!187
Add Qp lemmas
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+9
-0
9 additions, 0 deletions
CHANGELOG.md
theories/numbers.v
+0
-3
0 additions, 3 deletions
theories/numbers.v
with
9 additions
and
3 deletions
CHANGELOG.md
+
9
−
0
View file @
028eb93c
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
theories/numbers.v
+
0
−
3
View file @
028eb93c
...
...
@@ -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
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment