Transport of chunk systems along marked isometries
ProvedKServer.chunk_system_transportTransport of chunk systems along marked isometries. If is a chunk system with online escapes on with marked points , and is a distance-preserving bijection, then pushing every request set forward along yields a chunk system on with marked points and identical outcome space, weights, filtration, sizes, escape price and expected total. The conditional cost bound transfers by pulling a -evader and its online bail rule back along (costs, bail times and escape semantics are preserved verbatim), and the offline optimum is preserved because serving paths correspond bijectively. In the BCR induction this places the inductively constructed systems into the isometric copies of the level spaces in either orientation: a system for is transported onto a reversed copy without requiring any reflection symmetry of itself.
import Mathlib import Definitions.Def_KServer_evader import Definitions.Def_KServer_evader_bail import Definitions.Def_KServer_chunk_system_b
namespace KServer
theorem chunk_system_transport {X Y : Type*} [MetricSpace X] [MetricSpace Y]
{s t : X} {cLo cHi total price : ℝ} {mLo : ℕ}
(C : ChunkSystemB X s t cLo cHi total price mLo)
(φ : X ≃ Y) (hφ : ∀ a b : X, dist (φ a) (φ b) = dist a b) :
Nonempty (ChunkSystemB Y (φ s) (φ t) cLo cHi total price mLo) := by sorry
end KServer