Skip to content

Commit 39d887f

Browse files
committed
restore atgt.Discont.Topology
1 parent fe5317d commit 39d887f

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

atgt.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ import atgt.PointfreeFuncoid
88
import atgt.Funcoid
99
import atgt.Funcoid.Topology
1010
import atgt.Discont.Limit
11-
-- import atgt.Discont.Topology
11+
import atgt.Discont.Topology

atgt/Discont/Topology.lean

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import atgt.Discont.Limit
22
import atgt.Funcoid.Topology
3-
import Mathlib.Topology.AlexandrovDiscrete
43

54
open Filter Topology
65
open scoped Topology
@@ -9,7 +8,7 @@ universe u
98

109
section
1110

12-
variable {α : Type u} [TopologicalSpace α]
11+
variable {baseα : Type*} {α: Set baseα} [TopologicalSpace α]
1312

1413
theorem neighborhoodFuncoid_idempotent :
1514
(neighborhoodFuncoid (inferInstance : TopologicalSpace α)) ∘
@@ -45,19 +44,15 @@ theorem neighborhoodFuncoid_idempotent :
4544
_ = neighborhoodFuncoid (inferInstance : TopologicalSpace α) := by
4645
simp [neighborhoodFuncoid, hrel]
4746

48-
-- FIXME: Use L from the book.
4947
theorem tendstotop_iff_fcd
48+
{baseα : Type*} {α: Set baseα} {baseβ : Type*} {β: Set baseβ}
5049
(x : α) (y : β)
51-
[TopologicalSpace β]
52-
(h : ∃! g : Funcoid β (OrderDual β),
53-
IsFwdContinuation1618 (limitPointsOfSet (neighborhoodFuncoid (d : TopologicalSpace β))) g)
50+
[TopologicalSpace α] [d: TopologicalSpace β]
5451
(f : α → β) :
5552
Filter.Tendsto f (nhds x) (nhds y) ↔
56-
IsFunctionLimit
57-
(neighborhoodFuncoid (d : TopologicalSpace β))
58-
h
59-
f
60-
(Filtrator.ofMathlibFilter (nhds x)) = (Filtrator.ofMathlibFilter (nhds y)) := by
53+
point_limitOfFunction
54+
(neighborhoodFuncoid d) f
55+
(Filtrator.ofMathlibFilter (nhds x)) y := by
6156
sorry
6257

6358
end

0 commit comments

Comments
 (0)