English
There is a copy operation for ContinuousOrderHom that produces a new object with the same action but a possibly different presentation; useful to fix definitional equalities.
Русский
Существуют копии отображений ContinuousOrderHom, образующие новый объект с тем же действием, но с иным представлением; полезно для фиксации определительных равенств.
LaTeX
$$$\text{copy}(f,f',h) \in \alpha \toCo \beta \text{ and has } toOrderHom = f'$.$$
Lean4
/-- Copy of a `ContinuousOrderHom` with a new `ContinuousMap` equal to the old one. Useful to fix
definitional equalities. -/
protected def copy (f : α →Co β) (f' : α → β) (h : f' = f) : α →Co β :=
⟨f.toOrderHom.copy f' h, h.symm.subst f.continuous_toFun⟩