Missing statics (from MK rev. 488)
This commit is contained in:
parent
c99335c3e9
commit
efe451de4c
@ -682,7 +682,7 @@ public class MutateESRankMuCMA implements InterfaceMutationGenerational, Seriali
|
||||
return "Rank-Mu-CMA-Mutator";
|
||||
}
|
||||
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "The CMA mutator scheme with static cov. matrix, rank-mu update and weighted recombination.";
|
||||
}
|
||||
|
||||
|
@ -890,7 +890,7 @@ public class ClusterBasedNichingEA implements InterfacePopulationChangedEventLis
|
||||
/** This method returns a global info string
|
||||
* @return description
|
||||
*/
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "This is a versatile species based niching EA method.";
|
||||
}
|
||||
/** This method will return a naming String
|
||||
|
@ -3,7 +3,7 @@ package simpleprobs;
|
||||
import java.util.BitSet;
|
||||
|
||||
public class SimpleB1 extends SimpleProblemBinary {
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "A simple B1 implementation, minimize bits in a binary vector.";
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@ package simpleprobs;
|
||||
|
||||
|
||||
public class SimpleF1 extends SimpleProblemDouble {
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "A simple F1 implementation, find the minimum of a hyper parabola.";
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@ import java.io.Serializable;
|
||||
import java.util.BitSet;
|
||||
|
||||
public abstract class SimpleProblemBinary implements InterfaceSimpleProblem<BitSet>, Serializable {
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "A simple binary problem. Override globalInfo() to insert more information.";
|
||||
}
|
||||
}
|
@ -3,7 +3,7 @@ package simpleprobs;
|
||||
import java.io.Serializable;
|
||||
|
||||
public abstract class SimpleProblemDouble implements InterfaceSimpleProblem<double[]>, Serializable {
|
||||
public String globalInfo() {
|
||||
public static String globalInfo() {
|
||||
return "A simple double valued problem. Override globalInfo() to insert more information.";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user