3f5c7807f3
Co-authored-by: aider (gpt-4o) <aider@aider.chat>
9 lines
256 B
Lean4
9 lines
256 B
Lean4
-- This module serves as the root of the `InductiveVerification` library.
|
|
-- Import modules here that should be built as part of the library.
|
|
import InductiveVerification.Basic
|
|
|
|
inductive Agent
|
|
| Server : Agent
|
|
| Friend : Nat → Agent
|
|
| Spy : Agent
|