UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

14 lines 468 B
import { Encoding } from "../../Encoding"; import { SecondaryObjectiveComparator } from "./SecondaryObjectiveComparator"; /** * Secondary objective that is based on the length of the encoding. * * @author Mitchell Olsthoorn */ export declare class LengthObjectiveComparator<T extends Encoding> implements SecondaryObjectiveComparator<T> { /** * @inheritDoc */ compare(a: T, b: T): number; } //# sourceMappingURL=LengthObjectiveComparator.d.ts.map