File size: 470 Bytes
b19d528 56f4f05 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /-!
# Sovereign Array Language — module aggregator
Importing every layer of the verified array kernel:
- `Array` : dependent-function model `I → α`
- `Broadcast` : pullback-along-projection semantics
- `Softmax` : `Π`-map normalization
- `NandAttention`: universal-NAND circuit-extraction spec
-/
import ArrayLang.Array
import ArrayLang.Broadcast
import ArrayLang.Softmax
import ArrayLang.NandAttention
import ArrayLang.SimplexNorm
|