Research-Stack/0-Core-Formalism/lean/external/OTOM/Projections.lean

16 lines
302 B
Text

namespace Semantics
/--
Cognitive Load metrics.
Mirrors `docs/cognitive/COGNITIVE_LOAD_FUNCTIONS_SPEC.md`.
-/
structure CognitiveLoad where
intrinsic : Float
extraneous : Float
germane : Float
routing : Float
memory : Float
total : Float
deriving Repr, BEq
end Semantics