pith. machine review for the scientific record. sign in
inductive

ResolutionMechanism

definition
show as:
view math explainer →
module
IndisputableMonolith.Sociology.ConflictResolutionFromJCost
domain
Sociology
line
26 · github
papers citing
none yet

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

A cached Ask Recognition explainer exists for this declaration.

open explainer

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