Skip to content
Open
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,20 @@ instance : CompleteSpace ConfigurationSpace := by
classical
simpa using (FiniteDimensional.complete ℝ ConfigurationSpace)

/-- The diffeomorphism between ℝ and ConfigurationSpace. -/
noncomputable def toRealDiffeo : Diffeomorph 𝓘(ℝ, ℝ) 𝓘(ℝ, ℝ) ℝ ConfigurationSpace ω where
toFun := fromRealCLM
invFun := toRealCLM
left_inv := by
intro t
cases t
Copy link
Copy Markdown
Collaborator

@zhikaip zhikaip Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
cases t

shouldn't need cases t here
(goes into CauSeq.Completion.Cauchy abs which is totally irrelevant here)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks - agreed. I also realised it is probably a bit stupid to add this and not simultaneously convert to EuclideanSpace. So will do that as well here.

rfl
right_inv := by
intro t
rfl
contMDiff_toFun := contMDiff_iff.mpr ⟨fromRealCLM.continuous, fun x y => contDiffOn_id⟩
contMDiff_invFun := contMDiff_iff.mpr ⟨toRealCLM.continuous, fun x y => contDiffOn_id⟩

/-!
## Map to space
-/
Expand Down
Loading