jan-dolejsi / vscode-pddl

Planning Domain Description Language (PDDL) grammar, syntax highlighting, code snippets, parser and planner integration for Visual Studio Code.
MIT License
84 stars 22 forks source link

Planner output is empty when using Fast Downward #128

Open victorpaleologue opened 2 years ago

victorpaleologue commented 2 years ago

When running the PDDL test using the following planner configuration

        {
            "kind": "COMMAND",
            "path": "/Users/victor.paleologue/Code/Palaio/HTN/downward/fast-downward.py",
            "syntax": "$(planner) --alias=lama $(options) $(domain) $(problem)",
            "title": "fast-downward.py",
            "canConfigure": true
        }

I get the output in a file called sas_plan, but not displayed in the output panel. The VSCode extension does not leverage the --plan-file option, nor has any sort of contract with FD, which is a widely used planner.

manyworldspublishing commented 1 year ago

I'm also seeing this behavior. The extension reports that a plan was found, but does not display the plan or tell me where (if anywhere) it was written to disk. Can you provide some advice for using Fast Downward with the extension? FD is the basis for many other planners.