Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jan
stdpp
Commits
c2d43491
Commit
c2d43491
authored
Jun 01, 2021
by
Robbert Krebbers
Browse files
CHANGELOG.
parent
33b3cd0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
c2d43491
...
...
@@ -30,6 +30,13 @@ API-breaking change is listed.
-
Add
`Countable`
instance for decidable Sigma types. (by Simon Gregersen)
-
Add tactics
`compute_done`
and
`compute_by`
for solving goals by computation.
-
Add
`Inj`
instances for
`fmap`
on option and maps.
-
Various changes to
`Permutation`
lemmas:
+
Rename
`Permutation_nil`
→
`Permutation_nil_r`
and
and
`Permutation_singleton`
→
`Permutation_singleton_r`
.
+
Add lemmas
`Permutation_nil_l`
and
`Permutation_singleton_l`
.
+
Add new instance
`cons_Permutation_inj_l : Inj (=) (≡ₚ) (.:: k).`
.
+
Add lemma
`Permutation_cross_split`
.
+
Make lemma
`elem_of_Permutation`
a biimplication
The following
`sed`
script should perform most of the renaming
(on macOS, replace
`sed`
by
`gsed`
, installed via e.g.
`brew install gnu-sed`
):
...
...
@@ -37,6 +44,9 @@ The following `sed` script should perform most of the renaming
sed -i -E '
s/\bdecide_left\b/decide_True_pi/g
s/\bdecide_right\b/decide_False_pi/g
# Permutation
s/\bPermutation_nil\b/Permutation_nil_r/g
s/\bPermutation_singleton\b/Permutation_singleton_r/g
' $(find theories -name "*.v")
```
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment