Jesús Pérez 0396e4037b
Some checks failed
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
chore: add ontology and reflection
2026-03-13 00:21:04 +00:00

14 lines
371 B
Plaintext

let s = import "../schemas/state.ncl" in
{
make_state = fun data => s.State & data,
make_transition = fun data => s.Transition & data,
make_dimension = fun data => s.Dimension & data,
make_coupling = fun data => s.Coupling & data,
State = s.State,
Transition = s.Transition,
Dimension = s.Dimension,
Coupling = s.Coupling,
}