mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
52 lines
1.2 KiB
Text
52 lines
1.2 KiB
Text
import Semantics.FixedPoint
|
|
|
|
namespace Semantics.UnifiedSchema
|
|
|
|
structure XenoAnchor where
|
|
topologicalHash : String
|
|
residualEntropy : UInt32
|
|
dimensionalOffset : Nat
|
|
deriving Repr, BEq
|
|
|
|
structure IneffableData where
|
|
xenoAnchor : XenoAnchor
|
|
isIneffable : Bool := true
|
|
collapsePotential : UInt32
|
|
deriving Repr, BEq
|
|
|
|
structure Clinamen where
|
|
bias : UInt32
|
|
exceptionRule : String
|
|
stabilityType : String
|
|
deriving Repr, BEq
|
|
|
|
structure Patadata where
|
|
clinamen : Option Clinamen
|
|
equivalenceOfOpposites : Bool := false
|
|
imaginarySolution : Option String
|
|
syzygyVector : List UInt32
|
|
deriving Repr, BEq
|
|
|
|
structure ModelNode where
|
|
modelId : String
|
|
complexity : UInt32
|
|
fitScore : UInt32
|
|
reachability : String
|
|
deriving Repr, BEq
|
|
|
|
structure UnifiedRecord where
|
|
t : Float
|
|
src : String
|
|
id : String
|
|
op : String
|
|
data : String
|
|
genome : String
|
|
bind : String
|
|
provenance : String
|
|
modelSpace : List ModelNode
|
|
patadata : Option Patadata
|
|
xenodata : Option IneffableData
|
|
schemaV : String := "1.4.0"
|
|
deriving Repr, BEq
|
|
|
|
end Semantics.UnifiedSchema
|