UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

21 lines 771 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 currently reachable and covered objectives. * * @author Mitchell Olsthoorn */ export declare class StructuralObjectiveManager<T extends Encoding> extends ArchiveBasedObjectiveManager<T> { /** * @inheritDoc * @protected */ protected _updateObjectives(objectiveFunction: ObjectiveFunction<T>): ObjectiveFunction<T>[]; /** * @inheritDoc */ load(subject: SearchSubject<T>): void; } //# sourceMappingURL=StructuralObjectiveManager.d.ts.map