cmaes 0.2.2

An implementation of the CMA-ES optimization algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
init:
	git config core.hooksPath .githooks

test:
	cargo test --release

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