| ---
|
| tags:
|
| - aurora
|
| - trinity
|
| - symbolic-reasoning
|
| - ternary-logic
|
| - c11
|
| - experimental
|
| ---
|
|
|
| # Aurora Trinity 0.1.0
|
|
|
| Aurora Trinity is an experimental C11 execution library for the Aurora model.
|
| It implements ternary domains, reversible TriGates, fixed-point propagation,
|
| tensor operations, windows, dictionaries, translation, and transactional
|
| persistence.
|
|
|
| This repository is a public artifact and experiment record. It is **not** a
|
| Transformer model and does not contain neural-network weights. Trinity is the
|
| runtime; Project Genesis contains experimental procedures and small reproducible
|
| knowledge artifacts for testing how semantic structure might emerge.
|
|
|
| ## Contents
|
|
|
| - `genesis_dictionary.bin`: deterministic Genesis dictionary artifact.
|
| - `lexicon.tsv`: small lexicalization artifact used by Genesis experiments.
|
| - `docs/TRINITY.md`: executable contract and runtime overview.
|
| - `genesis/README.md`: Genesis research protocol and baseline results.
|
| - `CHANGELOG.md`: release history.
|
|
|
| ## Reproduce
|
|
|
| The source code and build instructions are maintained at:
|
|
|
| https://github.com/Aurora-Program/Aurora-Trinity
|
|
|
| Release: `v0.1.0`
|
|
|
| ```sh
|
| cmake -S . -B build
|
| cmake --build build
|
| ctest --test-dir build --output-on-failure
|
| ```
|
|
|
| The published release has been verified with a clean CMake build and three
|
| passing CTest targets. Snapshot files are binary and require the same ABI.
|
|
|
| ## Scope and limitations
|
|
|
| The Genesis G-R baseline is a deterministic control, not evidence of acquired
|
| meaning. Its measurements must be compared with shuffled controls and future
|
| G-E and G-3 experiments. The artifacts here are intentionally small and are
|
| not a trained language model or a general-purpose dataset.
|
|
|
| ## License
|
|
|
| Source code is intended to be distributed under Apache License 2.0 and
|
| explanatory documentation under CC BY 4.0. See `LICENSE` in the source project
|
| for the repository's stated scope and the canonical license links.
|
|
|