mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
25 lines
440 B
Text
25 lines
440 B
Text
/-
|
|
DomainState.lean - Minimal stub for RegimeCore dependency
|
|
-/
|
|
|
|
namespace Semantics.DomainState
|
|
|
|
inductive ResolutionStatus
|
|
| pending
|
|
| resolved
|
|
| rejected
|
|
deriving Repr, DecidableEq
|
|
|
|
inductive StabilityClass
|
|
| stable
|
|
| throat
|
|
| unstable
|
|
| collapse
|
|
deriving Repr, DecidableEq
|
|
|
|
structure DomainState where
|
|
resolutionStatus : ResolutionStatus
|
|
stabilityClass : StabilityClass
|
|
deriving Repr, DecidableEq
|
|
|
|
end Semantics.DomainState
|