inductive
definition
ResolutionMechanism
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Sociology.ConflictResolutionFromJCost on GitHub at line 26.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
23namespace IndisputableMonolith.Sociology.ConflictResolutionFromJCost
24open Common.CanonicalJBand
25
26inductive ResolutionMechanism where
27 | negotiation | mediation | arbitration | adjudication | force_
28 deriving DecidableEq, Repr, BEq, Fintype
29
30theorem resolutionMechanismCount : Fintype.card ResolutionMechanism = 5 := by decide
31
32structure ConflictResolutionCert where
33 five_mechanisms : Fintype.card ResolutionMechanism = 5
34 threshold : CanonicalCert
35
36noncomputable def conflictResolutionCert : ConflictResolutionCert where
37 five_mechanisms := resolutionMechanismCount
38 threshold := cert
39
40end IndisputableMonolith.Sociology.ConflictResolutionFromJCost