-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(encode): disable USELESS_SUPPORTS by default
- Loading branch information
Showing
4 changed files
with
31 additions
and
1 deletion.
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
24 changes: 24 additions & 0 deletions
24
planning/problems/upf/ipc2006-tpp-propositional-strips/domain.pddl
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
(define (domain grounded_strips_tpp-domain) | ||
(:requirements :strips) | ||
(:predicates (at_truck1_market1) (on_sale_goods1_market1_level0) (ready_to_load_goods1_market1_level1) (loaded_goods1_truck1_level1) (stored_goods1_level1) (stored_goods1_level0) (loaded_goods1_truck1_level0) (on_sale_goods1_market1_level1) (ready_to_load_goods1_market1_level0) (at_truck1_depot1)) | ||
(:action unload_goods1_truck1_depot1_level0_level1_level0_level1 | ||
:parameters () | ||
:precondition (and (stored_goods1_level0) (loaded_goods1_truck1_level1) (at_truck1_depot1)) | ||
:effect (and (loaded_goods1_truck1_level0) (stored_goods1_level1) (not (loaded_goods1_truck1_level1)) (not (stored_goods1_level0)))) | ||
(:action load_goods1_truck1_market1_level0_level1_level0_level1 | ||
:parameters () | ||
:precondition (and (ready_to_load_goods1_market1_level1) (loaded_goods1_truck1_level0) (at_truck1_market1)) | ||
:effect (and (loaded_goods1_truck1_level1) (ready_to_load_goods1_market1_level0) (not (loaded_goods1_truck1_level0)) (not (ready_to_load_goods1_market1_level1)))) | ||
(:action drive_truck1_market1_depot1 | ||
:parameters () | ||
:precondition (and (at_truck1_market1)) | ||
:effect (and (at_truck1_depot1) (not (at_truck1_market1)))) | ||
(:action buy_truck1_goods1_market1_level0_level1_level0_level1 | ||
:parameters () | ||
:precondition (and (ready_to_load_goods1_market1_level0) (on_sale_goods1_market1_level1) (at_truck1_market1)) | ||
:effect (and (on_sale_goods1_market1_level0) (ready_to_load_goods1_market1_level1) (not (on_sale_goods1_market1_level1)) (not (ready_to_load_goods1_market1_level0)))) | ||
(:action drive_truck1_depot1_market1 | ||
:parameters () | ||
:precondition (and (at_truck1_depot1)) | ||
:effect (and (at_truck1_market1) (not (at_truck1_depot1)))) | ||
) |
1 change: 1 addition & 0 deletions
1
planning/problems/upf/ipc2006-tpp-propositional-strips/max_depth.txt
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
1 |
5 changes: 5 additions & 0 deletions
5
planning/problems/upf/ipc2006-tpp-propositional-strips/problem.pddl
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
(define (problem grounded_strips_tpp-problem) | ||
(:domain grounded_strips_tpp-domain) | ||
(:init (at_truck1_depot1) (on_sale_goods1_market1_level1) (loaded_goods1_truck1_level0) (stored_goods1_level0) (ready_to_load_goods1_market1_level0)) | ||
(:goal (and (stored_goods1_level1))) | ||
) |