UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

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