There was an error while loading. Please reload this page.
1 parent c534fcd commit b0e3837Copy full SHA for b0e3837
src/main/java/org/encog/ml/ea/opp/CompoundOperator.java
@@ -23,6 +23,7 @@
23
*/
24
package org.encog.ml.ea.opp;
25
26
+import java.io.Serializable;
27
import java.util.Random;
28
29
import org.encog.ml.ea.genome.Genome;
@@ -33,7 +34,7 @@
33
34
* A compound operator randomly chooses sub-operators to perform the actual
35
* operation. Each of the sub-operators can be provided with a weighting.
36
-public class CompoundOperator implements EvolutionaryOperator {
37
+public class CompoundOperator implements EvolutionaryOperator, Serializable {
38
39
/**
40
* The owner of this operator.
0 commit comments