UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

11 lines 508 B
import { Encoding } from "../Encoding"; import { ObjectiveFunction } from "../objective/ObjectiveFunction"; export declare const DominanceComparator: { /** * Fast Dominance Comparator as discussed in * "Automated Test Case Generation as a Many-Objective Optimisation Problem with Dynamic * Selection of the Targets" */ compare<T extends Encoding>(individual1: T, individual2: T, objectives: Set<ObjectiveFunction<T>>): number; }; //# sourceMappingURL=DominanceComparator.d.ts.map