/* * Java Genetic Algorithm Library (@__identifier__@). * Copyright (c) @__year__@ Franz Wilhelmstötter * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Author: * Franz Wilhelmstötter (franz.wilhelmstoetter@gmx.at) */ package org.jenetics; import static org.jenetics.TestUtils.diff; import static org.jenetics.TestUtils.newDoubleGenePopulation; import org.testng.Assert; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import org.jenetics.stat.Histogram; import org.jenetics.stat.LongMomentStatistics; import org.jenetics.util.Range; /** * @author <a href="mailto:franz.wilhelmstoetter@gmx.at">Franz Wilhelmstötter</a> */ public abstract class MutatorTester extends AltererTester { @Test(dataProvider = "alterCountParameters") public void alterCount( final Integer ngenes, final Integer nchromosomes, final Integer npopulation ) { final Population<DoubleGene, Double> p1 = newDoubleGenePopulation( ngenes, nchromosomes, npopulation ); final Population<DoubleGene, Double> p2 = p1.copy(); Assert.assertEquals(p2, p1); final Alterer<DoubleGene, Double> mutator = newAlterer(0.01); int mutations = mutator.alter(p1, 1); int difference = diff(p1, p2); Assert.assertEquals( mutations, difference, String.format("diff=%s, mutations=%s", difference, mutations) ); } @Test(dataProvider = "alterProbabilityParameters", groups = {"statistics"}) public void alterProbability( final Integer ngenes, final Integer nchromosomes, final Integer npopulation, final Double p ) { final Population<DoubleGene, Double> population = newDoubleGenePopulation( ngenes, nchromosomes, npopulation ); // The mutator to test. final Alterer<DoubleGene, Double> mutator = newAlterer(p); final long nallgenes = ngenes*nchromosomes*npopulation; final long N = 100; final double mean = nallgenes*p; final long min = 0; final long max = nallgenes; final Range<Long> domain = new Range<>(min, max); final Histogram<Long> histogram = Histogram.ofLong(min, max, 10); final LongMomentStatistics variance = new LongMomentStatistics(); for (int i = 0; i < N; ++i) { final long alterations = mutator.alter(population, 1); histogram.accept(alterations); variance.accept(alterations); } // Normal distribution as approximation for binomial distribution. // TODO: Implement test // assertDistribution( // histogram, // new NormalDistribution<>(domain, mean, variance.getVariance()) // ); } public double var(final double p, final long N) { return N*p*(1.0 - p); } public double mean(final double p, final long N) { return N*p; } @DataProvider(name = "alterCountParameters") public Object[][] alterCountParameters() { return TestUtils.alterCountParameters(); } @DataProvider(name = "alterProbabilityParameters") public Object[][] alterProbabilityParameters() { return TestUtils.alterProbabilityParameters(); } }