-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgps.py
51 lines (45 loc) · 1.36 KB
/
gps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# gps.py
# This file autogenerated from gps_py.org
# Special Variables
_ops_ = []
# Data Structure
class Op:
"""
An action is the basis of an operation.
An action can only occur if all its preconditions exist in the execution environment.
An action changes the state of the world by:
1. adding the conditions in its add_list to the environment.
2. removing the conditions in its del_list from the enviroment.
"""
def __init__(self, action=[], preconds=[], add_list=[], del_list=[]):
self.action = action
self.preconds = preconds
self.add_list = add_list
self.del_list = del_list
def __repr__(self):
return str(vars(self))
def gps(state, goal, ops=_ops_):
"""
General Problem Solver: from state achieve goal using ops.
"""
return find_all_if(action_p, achieve_all(cons ('start', state)), goals, [])
# Utilities
def cons (element, a_list):
"""
Adds an elment to the *front* of a_list.
If a_list is not a list, cons creates a list of one element holding a_list.
"""
if not type(a_list) == list:
a_list = [a_list]
a = [element]
a.extend(a_list)
return a
def first(a_list):
"""
Returns the first elment of a list.
Returns False if the list is empty.
"""
if len(a_list)==0:
return False
else:
return a_list[0]