Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. Question q1
  2. ===========
  3.  
  4. *** PASS: test_cases\q1\graph_backtrack.test
  5. *** solution: ['1:A->C', '0:C->G']
  6. *** expanded_states: ['A', 'D', 'C']
  7. *** PASS: test_cases\q1\graph_bfs_vs_dfs.test
  8. *** solution: ['2:A->D', '0:D->G']
  9. *** expanded_states: ['A', 'D']
  10. *** PASS: test_cases\q1\graph_infinite.test
  11. *** solution: ['0:A->B', '1:B->C', '1:C->G']
  12. *** expanded_states: ['A', 'B', 'C']
  13. *** PASS: test_cases\q1\graph_manypaths.test
  14. *** solution: ['2:A->B2', '0:B2->C', '0:C->D', '2:D->E2', '0:E2->F', '0:F->G']
  15. *** expanded_states: ['A', 'B2', 'C', 'D', 'E2', 'F']
  16. *** PASS: test_cases\q1\pacman_1.test
  17. *** pacman layout: mediumMaze
  18. *** solution length: 130
  19. *** nodes expanded: 146
  20.  
  21. ### Question q1: 3/3 ###
  22.  
  23.  
  24. Question q2
  25. ===========
  26.  
  27. *** PASS: test_cases\q2\graph_backtrack.test
  28. *** solution: ['1:A->C', '0:C->G']
  29. *** expanded_states: ['A', 'B', 'C', 'D']
  30. *** PASS: test_cases\q2\graph_bfs_vs_dfs.test
  31. *** solution: ['1:A->G']
  32. *** expanded_states: ['A', 'B']
  33. *** PASS: test_cases\q2\graph_infinite.test
  34. *** solution: ['0:A->B', '1:B->C', '1:C->G']
  35. *** expanded_states: ['A', 'B', 'C']
  36. *** PASS: test_cases\q2\graph_manypaths.test
  37. *** solution: ['1:A->C', '0:C->D', '1:D->F', '0:F->G']
  38. *** expanded_states: ['A', 'B1', 'C', 'B2', 'D', 'E1', 'F', 'E2']
  39. *** PASS: test_cases\q2\pacman_1.test
  40. *** pacman layout: mediumMaze
  41. *** solution length: 68
  42. *** nodes expanded: 269
  43.  
  44. ### Question q2: 3/3 ###
  45.  
  46.  
  47. Question q3
  48. ===========
  49.  
  50. *** PASS: test_cases\q3\graph_backtrack.test
  51. *** solution: ['1:A->C', '0:C->G']
  52. *** expanded_states: ['A', 'B', 'C', 'D']
  53. *** PASS: test_cases\q3\graph_bfs_vs_dfs.test
  54. *** solution: ['1:A->G']
  55. *** expanded_states: ['A', 'B']
  56. *** PASS: test_cases\q3\graph_infinite.test
  57. *** solution: ['0:A->B', '1:B->C', '1:C->G']
  58. *** expanded_states: ['A', 'B', 'C']
  59. *** PASS: test_cases\q3\graph_manypaths.test
  60. *** solution: ['1:A->C', '0:C->D', '1:D->F', '0:F->G']
  61. *** expanded_states: ['A', 'B1', 'C', 'B2', 'D', 'E1', 'F', 'E2']
  62. *** PASS: test_cases\q3\ucs_0_graph.test
  63. *** solution: ['Right', 'Down', 'Down']
  64. *** expanded_states: ['A', 'B', 'D', 'C', 'G']
  65. *** PASS: test_cases\q3\ucs_1_problemC.test
  66. *** pacman layout: mediumMaze
  67. *** solution length: 68
  68. *** nodes expanded: 269
  69. *** PASS: test_cases\q3\ucs_2_problemE.test
  70. *** pacman layout: mediumMaze
  71. *** solution length: 74
  72. *** nodes expanded: 260
  73. *** PASS: test_cases\q3\ucs_3_problemW.test
  74. *** pacman layout: mediumMaze
  75. *** solution length: 152
  76. *** nodes expanded: 173
  77. *** PASS: test_cases\q3\ucs_4_testSearch.test
  78. *** pacman layout: testSearch
  79. *** solution length: 7
  80. *** nodes expanded: 14
  81. *** PASS: test_cases\q3\ucs_5_goalAtDequeue.test
  82. *** solution: ['1:A->B', '0:B->C', '0:C->G']
  83. *** expanded_states: ['A', 'B', 'C']
  84.  
  85. ### Question q3: 3/3 ###
  86.  
  87.  
  88. Question q4
  89. ===========
  90.  
  91. *** PASS: test_cases\q4\astar_0.test
  92. *** solution: ['Right', 'Down', 'Down']
  93. *** expanded_states: ['A', 'B', 'D', 'C', 'G']
  94. *** PASS: test_cases\q4\astar_1_graph_heuristic.test
  95. *** solution: ['0', '0', '2']
  96. *** expanded_states: ['S', 'A', 'D', 'C']
  97. *** PASS: test_cases\q4\astar_2_manhattan.test
  98. *** pacman layout: mediumMaze
  99. *** solution length: 68
  100. *** nodes expanded: 221
  101. *** PASS: test_cases\q4\astar_3_goalAtDequeue.test
  102. *** solution: ['1:A->B', '0:B->C', '0:C->G']
  103. *** expanded_states: ['A', 'B', 'C']
  104. *** PASS: test_cases\q4\graph_backtrack.test
  105. *** solution: ['1:A->C', '0:C->G']
  106. *** expanded_states: ['A', 'B', 'C', 'D']
  107. *** PASS: test_cases\q4\graph_manypaths.test
  108. *** solution: ['1:A->C', '0:C->D', '1:D->F', '0:F->G']
  109. *** expanded_states: ['A', 'B1', 'C', 'B2', 'D', 'E1', 'F', 'E2']
  110.  
  111. ### Question q4: 3/3 ###
  112.  
  113.  
  114. Question q5
  115. ===========
  116.  
  117. *** Method not implemented: getStartState at line 294 of searchAgents.py
  118. *** FAIL: Terminated with a string exception.
  119.  
  120. ### Question q5: 0/3 ###
  121.  
  122.  
  123. Question q6
  124. ===========
  125.  
  126. *** Method not implemented: getStartState at line 294 of searchAgents.py
  127. *** FAIL: Terminated with a string exception.
  128.  
  129. ### Question q6: 0/3 ###
  130.  
  131.  
  132. Finished at 20:21:39
  133.  
  134. Provisional grades
  135. ==================
  136. Question q1: 3/3
  137. Question q2: 3/3
  138. Question q3: 3/3
  139. Question q4: 3/3
  140. Question q5: 0/3
  141. Question q6: 0/3
  142. ------------------
  143. Total: 12/18
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement