Skip to content

Commit

Permalink
Additional lab01 documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
isa3 committed Feb 7, 2020
1 parent beba100 commit 6833244
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lab01/lab_1.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Answers for lab01 - Monkey section. Ian Adams, CS344, Spring 2020, Calvin University.

b. i. The GPS problem solver is implemented as a function.
ii. Initial states and goal states are lists of strings. Operators are lists of dictionaries that map strings to lists of strings.
iii. Yes. achieve_all() calls achieve() on each goal in goals, which calls
Expand Down
7 changes: 7 additions & 0 deletions lab01/lab_2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
from gps import gps

################################
# Lab_2.py
# Altered from blockworld.py by Ian Adams for CS344 at Calvin University, Spring 2020
#
# Problem specification for two block world GPS problems, as given by the lab.
################################

problem = {
# "start1": ["space on a", "a on b", "b on c", "c on table", "space on table"],
# "finish1": ["space on c", "c on b", "b on a", "a on table", "space on table"],
Expand Down

0 comments on commit 6833244

Please sign in to comment.