@syntest/core
Version:
The common core of the SynTest Framework
14 lines • 369 B
TypeScript
import { Encoding } from "../../..";
/**
* Creates children swapping statements between the parents
* @param parents the parent individuals
*
* @return a tuple of children
*
* @author Annibale Panichella
* @author Dimitri Stallenberg
*/
export interface Crossover<T extends Encoding> {
crossOver(parents: T[]): T[];
}
//# sourceMappingURL=Crossover.d.ts.map