Interface IRecombinationStrategy
-
- All Known Implementing Classes:
CrossoverPointRecombination
public interface IRecombinationStrategy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<org.eclipse.emf.ecore.EObject>
recombine(CoSpan firstSplit, CoSpan secondSplit)
Recombines two parent solutions (represented by splits) and creates two or more EMF models as offspring.
-
-
-
Method Detail
-
recombine
List<org.eclipse.emf.ecore.EObject> recombine(CoSpan firstSplit, CoSpan secondSplit)
Recombines two parent solutions (represented by splits) and creates two or more EMF models as offspring.- Parameters:
firstSplit
- the first parent represented by a splitsecondSplit
- the second parent represented by a split- Returns:
- a list containing the roots of the offspring models created as recombinations of the input splits
-
-