Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 735 Bytes

readme.md

File metadata and controls

19 lines (14 loc) · 735 Bytes

Toolkits

Static Badge

This project contains misc tools that can be used for planning things.

Static Predicate Detector

There is a simple static predicate detector included in PDDLSharp. It is able to find predicates that are not ever changed by action effects, durative action effects, and axiom implies.

Examples

Example of how to find a list of static predicates in a PDDLDecl:

IErrorListener listener = new ErrorListener();
IParser<INode> parser = new PDDLParser(listener);
PDDLDecl decl = new PDDLDecl(...)

List<PredicateExp> staticPredicates = SimpleStaticPredicateDetector.FindStaticPredicates(decl);