-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDFS.py
67 lines (54 loc) · 1.62 KB
/
DFS.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#DFS
import Cubing as c
actor=c.Actions()
def dfs(cube:c.Cube,goalstate):
closed=set()
fringe=[]
actions=[]
fringe.insert(0,(meaningfulState(cube.START_STATE),cube.MOVE_LIST+[],0))
#print(meaningfulState(cube.START_STATE))
while(True):
if len(fringe)==0:
print("Failure")
return False
node,actions,cost=fringe.pop(0)
print(actions)
if CheckGS(actions,goalstate)==True:
return actions
if str(node) not in closed:
closed.add(str(node))
for state in getSuccessors(node,actions):
fringe.insert(0,(state[0],actions+[state[1]],state[2]))
#print(fringe)
return actions
def getSuccessors(node:tuple,al):
temp_Cube=c.Cube(al)
validMoves=actor.getPossibleMoves(temp_Cube)
sucessors=[]
for move in validMoves:
next_state=actor.actOnCube(temp_Cube,move)
cost=1
sucessors.append((meaningfulState(next_state),move,cost))
return sucessors
def meaningfulState(state):
pos_rot=[]
for block in state:
pos_rot.append((block.current_position,block.rotation))
return pos_rot
def CheckGS(actionlist,gs):
temp_Cube=c.Cube(actionlist)
if meaningfulState(temp_Cube.CURRENT_STATE)==meaningfulState(gs):
return True
else:
return False
# test=c.Cube(["L"])
# #print(a)
# print("Before DFS\n")
# print(test.MOVE_LIST)
# print(test.getDEBUGCube())
# print("During DFS")
# a=dfs(test,test.GOAL_STATE)
# print(str(a))
# test=c.Cube(a)
# print("\nPost DFS\n")
# print(test.getDEBUGCube())