ai-planning-val
Version:
Javascript/typescript wrapper for VAL (AI Planning plan validation and evaluation tools from KCL Planning department and the planning community around the ICAPS conference).
13 lines (12 loc) • 485 B
TypeScript
import { HappeningsInfo, Happening } from 'pddl-workspace';
export declare class HappeningsToValStep {
durativeActionCounter: number;
durativeActionIndex: Map<string, number>;
valStepText: string[];
makespan: number;
convertAllHappenings(happenings: HappeningsInfo): void;
convert(happenings: Happening[], batchId?: number): string;
getExportedText(andQuit: boolean): string;
private happeningToValStep;
toOrderedActionName(h: Happening): string;
}