moga 0.2.0

A multi-objective genetic algorithm framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
export def main [opt: string, test: string] {
  cd examples
  let filename = $opt ++ _ ++ $test
  cargo run --example $filename --release
    | $in ++ "\ne"
    | gnuplot -p -e $"
        set term pngcairo size 800,600;
        set output '($opt)/($test).png';
        set key noenhanced;
        plot '-' with points ps 1 title '($test) - ($opt)';
    "
}