aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/modules/problem/BestFitness.java
blob: dce9ecd999b13badc6d049659c71177a253cafdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package jcgp.backend.modules.problem;

/**
 * Enum type to allow problems to indicate their fitness
 * orientation.
 * <br><br>
 * {@code BestFitness.HIGH} means high fitness values are
 * better than low. Conversely, {@code BestFitness.LOW}
 * signals that low fitness values indicate better fitness
 * than high values. 
 * 
 * 
 * @author Eduardo Pedroni
 *
 */
public enum BestFitness {
	HIGH, LOW;
}