cge 0.1.1

An implementation of the Common Genetic Encoding (CGE) for directly-encoded neural networks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
init:
	git config core.hooksPath .githooks

test:
	cargo test
	cargo build --no-default-features
	cargo build --no-default-features --features "serde"
	cargo build --no-default-features --features "json"

run-examples:
	for eg in `ls ./examples/*.rs | xargs basename --suffix=.rs`; do \
		cargo run --example $$eg; \
	done