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
392eaff0
Commit
392eaff0
authored
3 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
CHANGELOG.
parent
ee01b088
No related branches found
No related tags found
1 merge request
!348
Homomorphism properties for `bool_decide` + rename (bool_)decide_iff.
Pipeline
#58485
passed
3 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
with
3 additions
and
0 deletions
CHANGELOG.md
+
3
−
0
View file @
392eaff0
...
@@ -12,6 +12,7 @@ Coq 8.10 is no longer supported by this release.
...
@@ -12,6 +12,7 @@ Coq 8.10 is no longer supported by this release.
-
Add
`bool_to_Z`
that converts true to 1 and false to 0. (by Michael Sammler)
-
Add
`bool_to_Z`
that converts true to 1 and false to 0. (by Michael Sammler)
-
Add lemmas for lookup on
`mjoin`
for lists. (by Michael Sammler)
-
Add lemmas for lookup on
`mjoin`
for lists. (by Michael Sammler)
-
Rename
`Is_true_false`
→
`Is_true_false_2`
and
`eq_None_ne_Some`
→
`eq_None_ne_Some_1`
.
-
Rename
`Is_true_false`
→
`Is_true_false_2`
and
`eq_None_ne_Some`
→
`eq_None_ne_Some_1`
.
-
Rename
`decide_iff`
→
`decide_ext`
and
`bool_decide_iff`
→
`bool_decide_ext`
.
The following
`sed`
script should perform most of the renaming
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`
).
...
@@ -20,6 +21,8 @@ Note that the script is not idempotent, do not run it twice.
...
@@ -20,6 +21,8 @@ Note that the script is not idempotent, do not run it twice.
sed -i -E -f- $(find theories -name "*.v") <<EOF
sed -i -E -f- $(find theories -name "*.v") <<EOF
s/\bIs_true_false\b/Is_true_false_2/g
s/\bIs_true_false\b/Is_true_false_2/g
s/\beq_None_ne_Some\b/eq_None_ne_Some_1/g
s/\beq_None_ne_Some\b/eq_None_ne_Some_1/g
# bool decide
s/\b(bool_|)decide_iff\b/\1decide_ext/g
EOF
EOF
```
```
...
...
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