eevee 0.1.0

Generalized NeuroEvolution toolkit, based on NEAT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

target="$1"
if [ -z "$target" ]; then
        echo "Target is empty. Exiting."
        exit 1
fi
cmp_branch="$2"
if [ -z "$cmp_branch" ]; then
        cmp_branch="-"
fi

git checkout $cmp_branch
cargo bench --bench $target

git checkout -
cargo bench --bench $target