theorem
proved
term proof
protocolSpec_eq_iff
show as:
view Lean formalization →
formal statement (Lean)
74theorem protocolSpec_eq_iff (a b : CombinationID) :
75 protocolSpec a = protocolSpec b ↔ a = b := by
proof body
Term-mode proof.
76 constructor
77 · intro h
78 exact protocolSpec_injective h
79 · intro h
80 rw [h]
81
82/-- Distinct combinations have distinct complete empirical protocols. -/