diff options
author | Eduardo Pedroni <ep625@york.ac.uk> | 2014-05-15 09:16:20 +0100 |
---|---|---|
committer | Eduardo Pedroni <ep625@york.ac.uk> | 2014-05-15 09:16:20 +0100 |
commit | 2a655a0b1654a2721089f0f8d99b846d7e198f38 (patch) | |
tree | 031f898cbedd39e88d658f46feecb50a38585f67 | |
parent | c35a6806df01481c1b169cd0fc47660ea1cc10fb (diff) |
Cleaned up a few comments
-rw-r--r-- | src/jcgp/backend/modules/es/MuPlusLambda.java | 2 | ||||
-rw-r--r-- | src/jcgp/backend/resources/ModifiableResources.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/jcgp/backend/modules/es/MuPlusLambda.java b/src/jcgp/backend/modules/es/MuPlusLambda.java index 6a6870f..c2981cb 100644 --- a/src/jcgp/backend/modules/es/MuPlusLambda.java +++ b/src/jcgp/backend/modules/es/MuPlusLambda.java @@ -117,7 +117,7 @@ public class MuPlusLambda extends EvolutionaryStrategy { private void sort(Population population) { /* Create an array with the index of each of the current parents. * This is done to speed up the sort. No deep chromosome copies are - * made until the algorithm is finished; instead, only indices are copied. + * made until the sort is finished; instead, only indices are copied. */ int[] parents = new int[mu.get()]; for (int i = 0; i < parents.length; i++) { diff --git a/src/jcgp/backend/resources/ModifiableResources.java b/src/jcgp/backend/resources/ModifiableResources.java index 5df26e2..2b0c039 100644 --- a/src/jcgp/backend/resources/ModifiableResources.java +++ b/src/jcgp/backend/resources/ModifiableResources.java @@ -126,7 +126,7 @@ public class ModifiableResources extends Resources { /** * @param seed the seed to set. */ - public void setSeed(int seed) { + public void setSeed(long seed) { this.seed.set(seed); } |