Skip to content

Commit

Permalink
removing redundant name term
Browse files Browse the repository at this point in the history
  • Loading branch information
zstone1 committed Nov 11, 2024
1 parent 639d235 commit f9dd8a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
- in file `weak_topology.v`,
+ new lemma `continuous_comp_weak`.
- in file `function_spaces.v`,
+ new definitions `eval`, and `comp_cts`.
+ new definitions `eval`.
+ new lemmas `continuous_curry_fun`, `continuous_curry_joint_cvg`,
`eval_continuous`, and `compose_continuous`.

Expand Down
8 changes: 2 additions & 6 deletions theories/function_spaces.v
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ From mathcomp Require Import reals signed topology separation_axioms.
(* {compact_open, U -> V} == compact-open topology *)
(* {compact_open, F --> f} == F converges to f in {compact_open, U -> V} *)
(* eval == the evaluation map for continuous functions *)
(* comp_cts == composition for continuous functions *)
(* ``` *)
(* *)
(* ## Ascoli's theorem notations *)
Expand Down Expand Up @@ -1561,10 +1560,6 @@ End currying.
Definition eval {X Y : topologicalType} : continuousType X Y * X -> Y :=
uncurry (id : continuousType X Y -> (X -> Y)).

Definition comp_cts {X Y Z : topologicalType} (g : continuousType Y Z)
(f : continuousType X Y) : continuousType X Z :=
g \o f.

Section composition.

Local Import ArrowAsCompactOpen.
Expand All @@ -1580,7 +1575,8 @@ Qed.
Lemma compose_continuous {X Y Z : topologicalType} :
locally_compact [set: X] -> @regular_space X ->
locally_compact [set: Y] -> @regular_space Y ->
continuous (uncurry (@comp_cts X Y Z)).
continuous (uncurry
(comp : continuousType Y Z -> continuousType X Y -> continuousType X Z)).
Proof.
move=> ? ? lY rY; apply: continuous_comp_weak.
set F := _ \o _.
Expand Down

0 comments on commit f9dd8a7

Please sign in to comment.