Deterministic computational art and research archive.
Governed, Not Generated.
This project rejects the use of stochastic generation, neural networks, and diffusion models in favor of artifacts derived from explicit mathematical laws.
Numerical determinism is mandatory. All results must be reproducible from an initial condition, governing equations, and a deterministic parameter path. Code must be transparent and double-precision.
core/: Shared utilities.universes/: Individual simulation systems.outputs/: Artifact directory.
mkdir -p builds
cd builds
cmake ..
makecd universes/U001-emergent-instability
../../builds/universes/U001-emergent-instability/U001_sim configs/parameters.json
python3 python/render_stream.pycd universes/U002-gravitational-assembly
mkdir -p build && cd build && cmake .. && make
cd ..
./build/u002_sim
python3 python/detect_stages.py
python3 python/video.py- U001 — Emergent Instability: Reaction-diffusion systems exploring forced topological collapse.
- U002 — Gravitational Assembly: N-body systems exploring the bifurcation between collapse and convergence.
Every output is reproducible. The exact state is defined by the governing equations and parameters specified in each universe's configuration file.