Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the panda package. #143

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions planutils/packages/panda/install
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

apptainer build panda.sif docker://pandaplanner/panda:latest
14 changes: 14 additions & 0 deletions planutils/packages/panda/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "PANDA",
"description": "PANDA is a framework that combines different techniques related to Hierarchical Task Network (HTN) planning. PANDA is an acronym for Planning and Acting in a Network Decomposition Architecture. PANDA has been developed at the Institute of Artificial Intelligence at Ulm University headed by Susanne Biundo.",
"homepage": "https://panda-planner-dev.github.io/",
"install-size": "31M",
"dependencies": [],
"endpoint": {
"services": {
"solve": {
"template": "planner"
}
}
}
}
3 changes: 3 additions & 0 deletions planutils/packages/panda/run
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

apptainer run -e $(dirname $0)/panda.sif $@
3 changes: 3 additions & 0 deletions planutils/packages/panda/uninstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

rm panda.sif
Loading