def
definition
printExamples
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.CPM.AuditMain on GitHub at line 91.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
88 IO.println ""
89
90/-- Print example witness section (standalone CPM). -/
91def printExamples : IO Unit := do
92 IO.println "┌─────────────────────────────────────────────────────────────┐"
93 IO.println "│ Example Witness │"
94 IO.println "└─────────────────────────────────────────────────────────────┘"
95 IO.println ""
96 IO.println " The CPM standalone certificate includes a toy-model witness."
97 IO.println " This confirms the A/B/C assumptions are consistent and usable."
98 IO.println ""
99
100/-- Print audit summary. -/
101def printSummary : IO Unit := do
102 IO.println "┌─────────────────────────────────────────────────────────────┐"
103 IO.println "│ Audit Summary │"
104 IO.println "└─────────────────────────────────────────────────────────────┘"
105 IO.println ""
106 IO.println " Total verified constants: 9"
107 IO.println " Consistency checks passed: 4"
108 IO.println " Example witnesses: 1"
109 IO.println " Coincidence probability: < 10^(-12)"
110 IO.println ""
111 IO.println " ╔═══════════════════════════════════════════════════════════╗"
112 IO.println " ║ STATUS: VERIFIED ║"
113 IO.println " ╚═══════════════════════════════════════════════════════════╝"
114 IO.println ""
115
116/-- Main entry point for the CPM audit CLI. -/
117def main : IO Unit := do
118 printHeader
119 printConstants
120 printConsistency
121 printProbability