Minor addition to MutateEAMixer

This commit is contained in:
Marcel Kronfeld 2010-11-11 10:24:48 +00:00
parent 65632f4cf9
commit dddbe65b3b

View File

@ -54,7 +54,7 @@ public class MutateEAMixer implements InterfaceMutation, java.io.Serializable {
* Create a mutation mixer with equal weights of the given mutation operators. * Create a mutation mixer with equal weights of the given mutation operators.
* @param mutators * @param mutators
*/ */
public MutateEAMixer(InterfaceMutation[] mutators) { public MutateEAMixer(InterfaceMutation ... mutators) {
this.m_Mutators = new PropertyMutationMixer(mutators); this.m_Mutators = new PropertyMutationMixer(mutators);
this.m_UseSelfAdaption = false; this.m_UseSelfAdaption = false;
} }