Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
+ new lemmas `perfect_set2`, and `ent_closure`.
+ lemma `clopen_surj`

- in `normedtype.v`:
+ hints for `at_right_proper_filter` and `at_left_proper_filter`

- in `realfun.v`:
+ notations `nondecreasing_fun`, `nonincreasing_fun`,
`increasing_fun`, `decreasing_fun`
+ lemmas `cvg_addrl`, `cvg_addrr`, `cvg_centerr`, `cvg_shiftr`,
`nondecreasing_cvgr`,
`nonincreasing_at_right_cvgr`,
`nondecreasing_at_right_cvgr`,
`nondecreasing_cvge`, `nondecreasing_is_cvge`,
`nondecreasing_at_right_cvge`, `nondecreasing_at_right_is_cvge`,
`nonincreasing_at_right_cvge`, `nonincreasing_at_right_is_cvge`

### Changed

### Renamed
Expand Down
6 changes: 6 additions & 0 deletions theories/normedtype.v
Original file line number Diff line number Diff line change
Expand Up @@ -2056,6 +2056,12 @@ End at_left_right.
Notation "x ^'-" := (at_left x) : classical_set_scope.
Notation "x ^'+" := (at_right x) : classical_set_scope.

#[global] Hint Extern 0 (Filter (nbhs _^'+)) =>
(apply: at_right_proper_filter) : typeclass_instances.

#[global] Hint Extern 0 (Filter (nbhs _^'-)) =>
(apply: at_left_proper_filter) : typeclass_instances.

Section open_itv_subset.
Context {R : realType}.
Variables (A : set R) (x : R).
Expand Down
Loading