Skip to content

Commit 00acbc3

Browse files
committed
renaming
1 parent b258208 commit 00acbc3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG_UNRELEASED.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
+ lemmas `compact_EVT_max`, `compact_EVT_min`, `EVT_max_rV`, `EVT_min_rV`
7474

7575
- in `topology_structure.v`:
76-
+ lemma `limit_pointNE`
76+
+ lemma `not_limit_pointE`
7777

7878
- in `separation_axioms.v`:
7979
+ lemmas `limit_point_closed`

theories/topology_theory/separation_axioms.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@ Lemma limit_point_closed {T : topologicalType} (A : set T) :
205205
accessible_space T -> closed (limit_point A).
206206
Proof.
207207
move=> accT; rewrite -openC openE/= => a.
208-
rewrite /setC/= limit_pointNE => -[X].
208+
rewrite /setC/= not_limit_pointE => -[X].
209209
rewrite nbhsE/= => -[U oaU UX] XAa.
210210
rewrite /interior nbhsE/=.
211211
exists U => // x Ux /=.
212-
rewrite limit_pointNE.
212+
rewrite not_limit_pointE.
213213
have [xa|xneqa] := eqVneq x a.
214214
exists U; rewrite xa; first exact: open_nbhs_nbhs.
215215
by apply: subset_trans XAa; exact: setIS.

theories/topology_theory/topology_structure.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ Proof. by rewrite limit_pointEnbhs; under eq_fun do rewrite meets_openr. Qed.
689689
Lemma subset_limit_point E : limit_point E `<=` closure E.
690690
Proof. by move=> t Et U tU; have [p [? ? ?]] := Et _ tU; exists p. Qed.
691691

692-
Lemma limit_pointNE A a : (~ limit_point A a) =
692+
Lemma not_limit_pointE A a : (~ limit_point A a) =
693693
exists2 X : set T, nbhs a X & A `&` X `<=` [set a].
694694
Proof.
695695
rewrite /limit_point/= -existsNE exists2E; apply: eq_exists => X/=.

0 commit comments

Comments
 (0)