aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/tests/PopulationTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/backend/tests/PopulationTests.java')
-rw-r--r--src/jcgp/backend/tests/PopulationTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jcgp/backend/tests/PopulationTests.java b/src/jcgp/backend/tests/PopulationTests.java
index fca9c4f..2f36ce1 100644
--- a/src/jcgp/backend/tests/PopulationTests.java
+++ b/src/jcgp/backend/tests/PopulationTests.java
@@ -1,7 +1,7 @@
package jcgp.backend.tests;
import static org.junit.Assert.assertTrue;
-import jcgp.backend.function.DoubleArithmetic;
+import jcgp.backend.function.SymbolicRegressionFunctions;
import jcgp.backend.population.Chromosome;
import jcgp.backend.population.Population;
import jcgp.backend.resources.ModifiableResources;
@@ -32,7 +32,7 @@ public class PopulationTests {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
resources = new ModifiableResources();
- resources.setFunctionSet(new DoubleArithmetic());
+ resources.setFunctionSet(new SymbolicRegressionFunctions());
}
@Before
@@ -64,6 +64,6 @@ public class PopulationTests {
// initialise a population with a copy of it
population = new Population(oc, resources);
// check that the first parent chromosome is identical to, but not the same instance as, the one given
- assertTrue("Incorrect chromosome in population.", population.getChromosome(0).compareTo(oc) && population.getChromosome(0) != oc);
+ assertTrue("Incorrect chromosome in population.", population.getChromosome(0).compareGenesTo(oc) && population.getChromosome(0) != oc);
}
}