Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
comp3431_ass3_snippets
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COMP3431-RSA
comp3431_ass3_snippets
Commits
99ae1f96
Commit
99ae1f96
authored
3 years ago
by
Kenji Brameld
Browse files
Options
Downloads
Patches
Plain Diff
initial commit
parents
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
domain.pddl
+32
-0
32 additions, 0 deletions
domain.pddl
sample-problem.pddl
+22
-0
22 additions, 0 deletions
sample-problem.pddl
with
54 additions
and
0 deletions
domain.pddl
0 → 100644
+
32
−
0
View file @
99ae1f96
(define (domain turtlebot3-domain)
(:types
room robot item
)
(:predicates
(at ?rbt - robot ?rm - room)
(in ?itm - item ?rm - room)
(holding ?rbt - robot ?itm - item)
(hand_empty ?rbt - robot)
)
(:action move
:parameters (?rbt - robot ?from - room ?to - room)
:precondition ; Fill out this
:effect ; Fill out this
)
(:action pick
:parameters(?rbt - robot ?rm - room ?itm - item)
:precondition ; Fill out
:effect ; Fill out this
)
(:action place
:parameters(?rbt - robot ?rm - room ?itm - item)
:precondition ; Fill out this
:effect ; Fill out this
)
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
sample-problem.pddl
0 → 100644
+
22
−
0
View file @
99ae1f96
(define (problem moveitemtoroom)
(:domain turtlebot3-domain)
(:objects
turtlebot - robot
initial-room - room
living-room - room
kitchen - room
apple banana - item
)
(:init
(at turtlebot initial-room)
(in apple kitchen)
(in banana living-room)
(hand_empty turtlebot)
)
(:goal
(in apple living-room)
)
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment