evodef.Mutator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NTBEA Show documentation
Show all versions of NTBEA Show documentation
Parameter optimisation with the N-Tuple Bandit Evolutionary Algorithm
package evodef;
public interface Mutator {
int[] randMut(int[] v);
DefaultMutator setSearchSpace(SearchSpace searchSpace);
DefaultMutator setSwap(boolean swapMutation);
}