View Javadoc
1   package net.bmahe.genetics4j.core.spec;
2   
3   /**
4    * Specify the goal, whether to minimize or maximize the fitness score
5    *
6    */
7   public enum Optimization {
8   
9   	MINIMIZE, MAXIMIZE;
10  }