├── .gitignore ├── README.md ├── bin ├── plot └── try_params ├── doc ├── notes └── test-cases └── src └── main.zig /.gitignore: -------------------------------------------------------------------------------- 1 | zig-cache/ 2 | zig-out/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/README.md -------------------------------------------------------------------------------- /bin/plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/bin/plot -------------------------------------------------------------------------------- /bin/try_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/bin/try_params -------------------------------------------------------------------------------- /doc/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/doc/notes -------------------------------------------------------------------------------- /doc/test-cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/doc/test-cases -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrk/evo/HEAD/src/main.zig --------------------------------------------------------------------------------