structure
definition
def or abbrev
UpgradePath
show as:
view Lean formalization →
formal statement (Lean)
251structure UpgradePath where
252 /-- Current state -/
253 current_state : String
254 /-- Required steps -/
255 steps : List String
256 /-- Target state -/
257 target_state : String
258
259/-- The path to complete inevitability. -/