Skip to content

Commit

Permalink
add in_nearW
Browse files Browse the repository at this point in the history
  • Loading branch information
IshiguroYoshihiro committed Oct 1, 2024
1 parent c963835 commit c87bccc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
- in `realfun.v`:
+ lemmas `cvg_pinftyP`, `cvg_ninftyP`

- in `topology.v`:
+ lemma `in_nearW`

### Changed

### Renamed
Expand Down
10 changes: 10 additions & 0 deletions theories/topology.v
Original file line number Diff line number Diff line change
Expand Up @@ -7176,3 +7176,13 @@ Qed.
Local Close Scope relation_scope.

#[global] Hint Resolve uniform_regular : core.

Lemma in_nearW (R : topologicalType) (P : R -> Prop) (S : set R) :
@open R^o S ->
{in S, forall x, P x} ->
{in S, forall x, \near x, P x}.
Proof.
move=> oS HP z /set_mem Sz.
rewrite -nbhs_nearE nbhsE/=.
by exists S; last move=> x /mem_set/HP.
Qed.

0 comments on commit c87bccc

Please sign in to comment.