UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

21 lines 747 B
import { Encoding } from "../../Encoding"; import { SearchSubject } from "../../SearchSubject"; import { ObjectiveFunction } from "../ObjectiveFunction"; import { ArchiveBasedObjectiveManager } from "./ArchiveBasedObjectiveManager"; /** * Objective manager that only evaluates an encoding on uncovered objectives. * * @author Mitchell Olsthoorn */ export declare class UncoveredObjectiveManager<T extends Encoding> extends ArchiveBasedObjectiveManager<T> { /** * @inheritDoc * @protected */ protected _updateObjectives(objectiveFunction: ObjectiveFunction<T>): ObjectiveFunction<T>[]; /** * @inheritDoc */ load(subject: SearchSubject<T>): void; } //# sourceMappingURL=UncoveredObjectiveManager.d.ts.map