pddl-workspace
Version:
11 lines (10 loc) • 337 B
TypeScript
import { HappeningType } from '../';
/** Plan happening (instantaneous action or start/end snap action) generated in the process of the plan search. */
export interface SearchHappening {
earliestTime: number;
actionName: string;
shotCounter: number;
iterations: number;
kind: HappeningType;
isRelaxed: boolean;
}