-
Notifications
You must be signed in to change notification settings - Fork 0
/
informed_air_cargo_problem_3.txt
59 lines (48 loc) · 1.25 KB
/
informed_air_cargo_problem_3.txt
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
Solving Air Cargo Problem 3 using astar_search with h_1...
Expansions Goal Tests New Nodes
18151 18153 157594
Plan length: 12 Time elapsed in seconds: 554.961428908
Load(C1, P1, SFO)
Load(C2, P2, JFK)
Fly(P1, SFO, ATL)
Load(C3, P1, ATL)
Fly(P2, JFK, ORD)
Load(C4, P2, ORD)
Fly(P2, ORD, SFO)
Fly(P1, ATL, JFK)
Unload(C1, P1, JFK)
Unload(C2, P2, SFO)
Unload(C3, P1, JFK)
Unload(C4, P2, SFO)
Solving Air Cargo Problem 3 using astar_search with h_ignore_preconditions...
Expansions Goal Tests New Nodes
5038 5040 44751
Plan length: 12 Time elapsed in seconds: 186.81711010900108
Load(C1, P1, SFO)
Fly(P1, SFO, ATL)
Load(C3, P1, ATL)
Fly(P1, ATL, JFK)
Unload(C1, P1, JFK)
Load(C2, P2, JFK)
Fly(P2, JFK, ORD)
Load(C4, P2, ORD)
Fly(P2, ORD, SFO)
Unload(C2, P2, SFO)
Unload(C3, P1, JFK)
Unload(C4, P2, SFO)
Solving Air Cargo Problem 3 using astar_search with h_pg_levelsum...
Expansions Goal Tests New Nodes
415 417 3782
Plan length: 12 Time elapsed in seconds: 580.0838055630011
Load(C2, P2, JFK)
Fly(P2, JFK, ORD)
Load(C4, P2, ORD)
Fly(P2, ORD, SFO)
Load(C1, P1, SFO)
Fly(P1, SFO, ATL)
Load(C3, P1, ATL)
Fly(P1, ATL, JFK)
Unload(C1, P1, JFK)
Unload(C2, P2, SFO)
Unload(C3, P1, JFK)
Unload(C4, P2, SFO)