Skip to content
Snippets Groups Projects
Commit 0557c750 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

CHANGELOG.

parent 3182c252
No related branches found
No related tags found
No related merge requests found
Pipeline #51319 passed
This commit is part of merge request !310. Comments created here will be created in the context of that merge request.
...@@ -141,6 +141,9 @@ API-breaking change is listed. ...@@ -141,6 +141,9 @@ API-breaking change is listed.
+ Remove `map_to_list_empty_inv_alt`; chain `Permutation_nil_r` and + Remove `map_to_list_empty_inv_alt`; chain `Permutation_nil_r` and
`map_to_list_empty_iff` instead. `map_to_list_empty_iff` instead.
+ Add lemma `map_filter_empty_iff`. + Add lemma `map_filter_empty_iff`.
- Generalize `map_filter_insert` so that it covers both the True and False case.
Use `_True` and `_False` for the specific cases. Weaken premise of
`map_filter_delete_False` to make it consistent with `map_filter_insert_False'`.
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`).
...@@ -195,6 +198,11 @@ s/\bsize_empty_inv\b/size_empty_iff/g ...@@ -195,6 +198,11 @@ s/\bsize_empty_inv\b/size_empty_iff/g
s/\bdom_empty_inv(_L|)\b/dom_empty_iff\1/g s/\bdom_empty_inv(_L|)\b/dom_empty_iff\1/g
s/\bgmultiset_elements_empty('|_inv)\b/gmultiset_elements_empty_iff/g s/\bgmultiset_elements_empty('|_inv)\b/gmultiset_elements_empty_iff/g
s/\bgmultiset_size_empty_inv\b/gmultiset_size_empty_iff/g s/\bgmultiset_size_empty_inv\b/gmultiset_size_empty_iff/g
# map_filter_insert
s/\bmap_filter_insert\b/map_filter_insert_True/g
s/\bmap_filter_insert_not('|)\b/bmap_filter_insert_False\1/g
s/\bmap_filter_insert_not_delete\b/map_filter_insert_delete_False/g
s/\bmap_filter_delete_not\b/map_filter_delete_False/g
EOF EOF
``` ```
......
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