-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from AI-Planning/manifest-new-version
Allow compact manifest without the filename change.
- Loading branch information
Showing
19 changed files
with
73 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,14 @@ | ||
{ | ||
"name": "Cerberus planner for satisficing planning", | ||
"description": "https://github.com/ctpelok77/fd-red-black-postipc2018", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"cerberus" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"args": [ | ||
{ | ||
"name": "domain", | ||
"type": "file", | ||
"description": "domain file" | ||
}, | ||
{ | ||
"name": "problem", | ||
"type": "file", | ||
"description": "problem file" | ||
} | ||
], | ||
"call": "cerberus-sat {domain} {problem}", | ||
"return": { | ||
"type": "generic", | ||
"files": "*plan*" | ||
} | ||
} | ||
} | ||
"name": "Cerberus planner for satisficing planning", | ||
"description": "https://github.com/ctpelok77/fd-red-black-postipc2018", | ||
"install-size": "20K", | ||
"dependencies": ["cerberus"], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"template": "planner" | ||
} | ||
|
||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,27 @@ | ||
{ | ||
"name": "Forbid-Iterative top-k planner", | ||
"description": "https://github.com/IBM/forbiditerative", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"forbiditerative" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"args": [ | ||
{ | ||
"name": "domain", | ||
"type": "file", | ||
"description": "domain file" | ||
}, | ||
{ | ||
"name": "problem", | ||
"type": "file", | ||
"description": "problem file" | ||
}, | ||
{ | ||
"name": "number_of_plans", | ||
"type": "int", | ||
"description": "Number of Plans" | ||
} | ||
], | ||
"call": "forbiditerative-topk {domain} {problem} {number_of_plans}", | ||
"return": { | ||
"type": "generic", | ||
"files": "found_plans/done/sas_plan.*" | ||
} | ||
} | ||
"name": "Forbid-Iterative top-k planner", | ||
"description": "https://github.com/IBM/forbiditerative", | ||
"install-size": "20K", | ||
"dependencies": ["forbiditerative"], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"template": "planner", | ||
"args":[ | ||
{ | ||
"name": "number_of_plans", | ||
"type": "int", | ||
"description": "Number of Plans", | ||
"default":3 | ||
} | ||
], | ||
"call":"{package_name} {domain} {problem} {number_of_plans}", | ||
"return": { | ||
"type": "generic", | ||
"files": "found_plans/done/sas_plan.*" | ||
} | ||
} | ||
|
||
} | ||
} | ||
} |
27 changes: 0 additions & 27 deletions
27
planutils/packages/forbiditerative-topk/manifest_compact.json
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
{ | ||
"name": "LAMA-FIRST", | ||
"description": "http://fast-downward.org/", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"downward" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"args": [ | ||
{ | ||
"name": "domain", | ||
"type": "file", | ||
"description": "domain file" | ||
}, | ||
{ | ||
"name": "problem", | ||
"type": "file", | ||
"description": "problem file" | ||
} | ||
], | ||
"call": "lama-first {domain} {problem}", | ||
"return": { | ||
"type": "generic", | ||
"files": "*plan*" | ||
} | ||
} | ||
} | ||
"name": "LAMA-FIRST", | ||
"description": "http://fast-downward.org/", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"downward" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"template": "planner" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
{ | ||
"name": "LAMA", | ||
"description": "http://fast-downward.org/", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"downward" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"args": [ | ||
{ | ||
"name": "domain", | ||
"type": "file", | ||
"description": "domain file" | ||
}, | ||
{ | ||
"name": "problem", | ||
"type": "file", | ||
"description": "problem file" | ||
} | ||
], | ||
"call": "lama {domain} {problem}", | ||
"return": { | ||
"type": "generic", | ||
"files": "*plan*" | ||
} | ||
} | ||
} | ||
"name": "LAMA", | ||
"description": "http://fast-downward.org/", | ||
"install-size": "20K", | ||
"dependencies": [ | ||
"downward" | ||
], | ||
"endpoint": { | ||
"services": { | ||
"solve": { | ||
"template": "planner" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters