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
d0f75495
Commit
d0f75495
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Update CHANGELOG for Qp changes.
parent
98cf371f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#36741
passed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CHANGELOG.md
+9
-3
9 additions, 3 deletions
CHANGELOG.md
with
9 additions
and
3 deletions
CHANGELOG.md
+
9
−
3
View file @
d0f75495
...
@@ -14,7 +14,6 @@ Coq 8.8 and 8.9 are no longer supported.
...
@@ -14,7 +14,6 @@ Coq 8.8 and 8.9 are no longer supported.
`InsertE`
.
`InsertE`
.
-
Overhaul of the theory of positive rationals
`Qp`
:
-
Overhaul of the theory of positive rationals
`Qp`
:
+
Add
`max`
and
`min`
operations for
`Qp`
.
+
Add
`max`
and
`min`
operations for
`Qp`
.
+
Add additional lemmas for
`Qp`
.
+
Add the orders
`Qp_le`
and
`Qp_lt`
.
+
Add the orders
`Qp_le`
and
`Qp_lt`
.
+
Rename
`Qp_plus`
into
`Qp_add`
and
`Qp_mult`
into
`Qp_mul`
to be consistent
+
Rename
`Qp_plus`
into
`Qp_add`
and
`Qp_mult`
into
`Qp_mul`
to be consistent
with the corresponding names for
`nat`
,
`N`
, and
`Z`
.
with the corresponding names for
`nat`
,
`N`
, and
`Z`
.
...
@@ -42,8 +41,15 @@ The following `sed` script should perform most of the renaming
...
@@ -42,8 +41,15 @@ The following `sed` script should perform most of the renaming
(on macOS, replace
`sed`
by
`gsed`
, installed via e.g.
`brew install gnu-sed`
):
(on macOS, replace
`sed`
by
`gsed`
, installed via e.g.
`brew install gnu-sed`
):
```
```
sed -i -E '
sed -i -E '
s/\bQp_plus/Qp_add/g
s/\bQp_plus\b/Qp_add/g
s/\bQp_mult/Qp_mul/g
s/\bQp_mult\b/Qp_mul/g
s/\bQp_mult_1_l\b/Qp_mul_1_l/g
s/\bQp_mult_1_r\b/Qp_mul_1_r/g
s/\bQp_plus_id_free\b/Qp_add_id_free/g
s/\bQp_not_plus_ge\b/Qp_not_add_le_l/g
s/\bQp_le_plus_l\b/Qp_le_add_l/g
s/\bQp_mult_plus_distr_l\b/Qp_mul_add_distr_r/g
s/\bQp_mult_plus_distr_r\b/Qp_mul_add_distr_l/g
' $(find theories -name "*.v")
' $(find theories -name "*.v")
```
```
...
...
This diff is collapsed.
Click to expand it.
Robbert Krebbers
@robbertkrebbers
mentioned in merge request
!188 (merged)
·
4 years ago
mentioned in merge request
!188 (merged)
mentioned in merge request !188
Toggle commit list
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