![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.cilib.coevolution.cooperative.problemdistribution.ProblemDistributionStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cilib-library Show documentation
Show all versions of cilib-library Show documentation
A library of composable components enabling simpler Computational Intelligence
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.coevolution.cooperative.problemdistribution;
import java.util.List;
import net.sourceforge.cilib.algorithm.population.PopulationBasedAlgorithm;
import net.sourceforge.cilib.coevolution.cooperative.CooperativeCoevolutionAlgorithm;
import net.sourceforge.cilib.problem.Problem;
import net.sourceforge.cilib.type.types.container.Vector;
/**
* The interface used to distribute the dimensions in a given {@link OptimisationProblem}
* into sub-problems for a {@linkplain CooperativeCoevolutionAlgorithm}.
*/
public interface ProblemDistributionStrategy {
/**
* Splits up the given {@link OptimisationProblem} into sub-problems, where each sub problem
* contains a portion of the problem vector, and assigns them to all the participating {@link Algorithm}s.
* @param populations The list of participating {@linkplain PopulationBasedAlgorithm}s.
* @param problem The problem that needs to be re-distributed.
* @param context The context vector maintained by the {@linkplain CooperativeCoevolutionAlgorithm}.
*/
void performDistribution(List populations, Problem problem, Vector context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy