Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/298.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/16.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
A*实现的测试在Python3.8/Windows中通过,但在Python3.5/Ubuntu中失败_Python_Python 3.x_Unit Testing - Fatal编程技术网

A*实现的测试在Python3.8/Windows中通过,但在Python3.5/Ubuntu中失败

A*实现的测试在Python3.8/Windows中通过,但在Python3.5/Ubuntu中失败,python,python-3.x,unit-testing,Python,Python 3.x,Unit Testing,对于我正在开发的一个游戏,我有一个a*算法的实现。我有一个测试,检查它为给定映射生成的路由,该映射在Python3.8/Windows中通过,但在Python3.5/Ubuntu中失败。为什么在Python38中实现的路径与在Python3.5中不同 以下是函数: def a_star(start, goal, game_map, cannot_enter=['edge', 'water']): """A* finds a path from the units l

对于我正在开发的一个游戏,我有一个a*算法的实现。我有一个测试,检查它为给定映射生成的路由,该映射在Python3.8/Windows中通过,但在Python3.5/Ubuntu中失败。为什么在Python38中实现的路径与在Python3.5中不同

以下是函数:

def a_star(start, goal, game_map,
           cannot_enter=['edge', 'water']):
    """A* finds a path from the units location to goal.

    start and goal are 2D coordinates
    game_map is the map object with terrain.
    cannot_enter is a list of impassible terrain

    from the wiki page: https://en.wikipedia.org/wiki/A*_search_algorithm"""

    # The set of discovered nodes that may need to be (re-)expanded.
    # Initially, only the start node is known.
    open_set = set([start])

    # For node n, cameFrom[n] is the node immediately preceding it on the cheapest path from start to n currently known.
    came_from = {}

    #For node n, g_score[n] is the cost of the cheapest path from start to n currently known.
    g_score = Map('G score', game_map.dims, 999999999, 9999999999)
    g_score[start] = 0

    #For node n, f_score[n] = g_score[n] + h(n).
    f_score = Map('F score', game_map.dims, 999999999, 9999999999)
    f_score[start] = ch_distance(start, goal)

    while len(open_set) > 0:
        current = min([kv for kv in f_score.items() if kv[0] in open_set], key=lambda i: i[1])[0]
        print("{} fscore: {} gscore: {}".format(current,
                                                f_score[current],
                                                g_score[current]))
        if current == goal:
            return reconstruct_path(came_from, current)

        open_set.remove(current)
        for neighbor in game_map.neighbors(current):
            #d(current, neighbor) is the weight of the edge from current to neighbor
            #tentative_g_score is the distance from start to the neighbor through current
            # print("{} is {} is it in {}?".format(neighbor,
            #                                      game_map[neighbor],
            #                                      cannot_enter))
            if game_map[neighbor] not in cannot_enter:
                tentative_g_score = g_score[current] + 1
            else:
                tentative_g_score = g_score[neighbor]
            if tentative_g_score < g_score[neighbor]:
                #This path to neighbor is better than any previous one. Record it!
                came_from[neighbor] = current
                g_score[neighbor] = tentative_g_score
                f_score[neighbor] = g_score[neighbor] + ch_distance(neighbor, goal)
                if neighbor not in open_set:
                    open_set.add(neighbor)
    #open_set is empty but goal was never reached
    return False
测试运行程序输出如下所示。请注意,路由的长度是相同的,只是找到的特定路由在系统之间有所不同

Failure
Traceback (most recent call last):
  File "/usr/lib/python3.5/unittest/case.py", line 58, in testPartExecutor
    yield
  File "/usr/lib/python3.5/unittest/case.py", line 600, in run
    testMethod()
  File "/home/rcriii/workspace/mPyre/src/test_a_star.py", line 47, in test_indirect_route
    [(1, 1), (2, 2), (3, 3), (4, 4), (5, 4), (6, 4), (7, 5), (6, 6), (7, 7), (8, 8), (9, 9)])
  File "/usr/lib/python3.5/unittest/case.py", line 1018, in assertListEqual
    self.assertSequenceEqual(list1, list2, msg, seq_type=list)
  File "/usr/lib/python3.5/unittest/case.py", line 1000, in assertSequenceEqual
    self.fail(msg)
  File "/usr/lib/python3.5/unittest/case.py", line 665, in fail
    raise self.failureException(msg)
AssertionError: Lists differ: [(1, [20 chars](4, 4), (5, 4), (6, 4), (7, 5), (7, 6), (8, 7), (9, 8), (9, 9)] != [(1, [20 chars](4, 4), (5, 4), (6, 4), (7, 5), (6, 6), (7, 7), (8, 8), (9, 9)]

First differing element 7:
(7, 6)
(6, 6)

  [(1, 1),
   (2, 2),
   (3, 3),
   (4, 4),
   (5, 4),
   (6, 4),
   (7, 5),
-  (7, 6),
?   ^

+  (6, 6),
?   ^

-  (8, 7),
?   ^

+  (7, 7),
?   ^

-  (9, 8),
?   ^

+  (8, 8),
?   ^

   (9, 9)]

问题在于这条路线决定下一条路线要考虑的是:

current = min([kv for kv in f_score.items() if kv[0] in open_set], key=lambda i: i[1])[0]
print("{} fscore: {} gscore: {}".format(current,
                                        f_score[current],
                                        g_score[current]))
f_分数
是一个字典,其键是坐标,值是f分数。在Python 3.7之前。因此,在Py3.5和Py3.8中,print语句的输出如下所示:

Python 3.5                    Python 3.8
-----------------------       -----------------------                 
(1, 1) fscore: 8 gscore: 0    (1, 1) fscore: 8 gscore: 0
(2, 2) fscore: 8 gscore: 1    (2, 2) fscore: 8 gscore: 1
(3, 3) fscore: 8 gscore: 2    (3, 3) fscore: 8 gscore: 2
(4, 4) fscore: 8 gscore: 3    (4, 4) fscore: 8 gscore: 3
(1, 2) fscore: 9 gscore: 1    (5, 5) fscore: 8 gscore: 4 <= Here they start to vary
(3, 2) fscore: 9 gscore: 2    (6, 6) fscore: 8 gscore: 5
(2, 1) fscore: 9 gscore: 1    (7, 7) fscore: 8 gscore: 6
(2, 3) fscore: 9 gscore: 2    (8, 8) fscore: 8 gscore: 7
(4, 3) fscore: 9 gscore: 3    (9, 9) fscore: 8 gscore: 8
(5, 4) fscore: 9 gscore: 4    (1, 1) fscore: 8 gscore: 0
(3, 4) fscore: 9 gscore: 3    (2, 2) fscore: 8 gscore: 1
(6, 4) fscore: 10 gscore: 5   (3, 3) fscore: 8 gscore: 2
(1, 3) fscore: 10 gscore: 2   (4, 4) fscore: 8 gscore: 3
(7, 5) fscore: 10 gscore: 6   (1, 2) fscore: 9 gscore: 1
(6, 6) fscore: 10 gscore: 7   (2, 1) fscore: 9 gscore: 1
(7, 7) fscore: 10 gscore: 8   (2, 3) fscore: 9 gscore: 2
(4, 2) fscore: 10 gscore: 3   (3, 2) fscore: 9 gscore: 2
(5, 3) fscore: 10 gscore: 4   (3, 4) fscore: 9 gscore: 3
(7, 6) fscore: 10 gscore: 7   (4, 3) fscore: 9 gscore: 3
(8, 7) fscore: 10 gscore: 8   (5, 4) fscore: 9 gscore: 4
(9, 8) fscore: 10 gscore: 9   (1, 3) fscore: 10 gscore: 2
(3, 1) fscore: 10 gscore: 2   (3, 1) fscore: 10 gscore: 2
(8, 8) fscore: 10 gscore: 9   (2, 4) fscore: 10 gscore: 3
(8, 6) fscore: 10 gscore: 7   (4, 2) fscore: 10 gscore: 3
(9, 7) fscore: 10 gscore: 8   (5, 3) fscore: 10 gscore: 4
(9, 9) fscore: 10 gscore: 10  (6, 4) fscore: 10 gscore: 5
 Here Python3.5 is done       (7, 5) fscore: 10 gscore: 6
 in 26 steps                  ... Not done yet! ...
                              Python3.8 keeps going
                              to 36 steps total

问题在于这条路线决定下一条路线要考虑的是:

current = min([kv for kv in f_score.items() if kv[0] in open_set], key=lambda i: i[1])[0]
print("{} fscore: {} gscore: {}".format(current,
                                        f_score[current],
                                        g_score[current]))
f_分数
是一个字典,其键是坐标,值是f分数。在Python 3.7之前。因此,在Py3.5和Py3.8中,print语句的输出如下所示:

Python 3.5                    Python 3.8
-----------------------       -----------------------                 
(1, 1) fscore: 8 gscore: 0    (1, 1) fscore: 8 gscore: 0
(2, 2) fscore: 8 gscore: 1    (2, 2) fscore: 8 gscore: 1
(3, 3) fscore: 8 gscore: 2    (3, 3) fscore: 8 gscore: 2
(4, 4) fscore: 8 gscore: 3    (4, 4) fscore: 8 gscore: 3
(1, 2) fscore: 9 gscore: 1    (5, 5) fscore: 8 gscore: 4 <= Here they start to vary
(3, 2) fscore: 9 gscore: 2    (6, 6) fscore: 8 gscore: 5
(2, 1) fscore: 9 gscore: 1    (7, 7) fscore: 8 gscore: 6
(2, 3) fscore: 9 gscore: 2    (8, 8) fscore: 8 gscore: 7
(4, 3) fscore: 9 gscore: 3    (9, 9) fscore: 8 gscore: 8
(5, 4) fscore: 9 gscore: 4    (1, 1) fscore: 8 gscore: 0
(3, 4) fscore: 9 gscore: 3    (2, 2) fscore: 8 gscore: 1
(6, 4) fscore: 10 gscore: 5   (3, 3) fscore: 8 gscore: 2
(1, 3) fscore: 10 gscore: 2   (4, 4) fscore: 8 gscore: 3
(7, 5) fscore: 10 gscore: 6   (1, 2) fscore: 9 gscore: 1
(6, 6) fscore: 10 gscore: 7   (2, 1) fscore: 9 gscore: 1
(7, 7) fscore: 10 gscore: 8   (2, 3) fscore: 9 gscore: 2
(4, 2) fscore: 10 gscore: 3   (3, 2) fscore: 9 gscore: 2
(5, 3) fscore: 10 gscore: 4   (3, 4) fscore: 9 gscore: 3
(7, 6) fscore: 10 gscore: 7   (4, 3) fscore: 9 gscore: 3
(8, 7) fscore: 10 gscore: 8   (5, 4) fscore: 9 gscore: 4
(9, 8) fscore: 10 gscore: 9   (1, 3) fscore: 10 gscore: 2
(3, 1) fscore: 10 gscore: 2   (3, 1) fscore: 10 gscore: 2
(8, 8) fscore: 10 gscore: 9   (2, 4) fscore: 10 gscore: 3
(8, 6) fscore: 10 gscore: 7   (4, 2) fscore: 10 gscore: 3
(9, 7) fscore: 10 gscore: 8   (5, 3) fscore: 10 gscore: 4
(9, 9) fscore: 10 gscore: 10  (6, 4) fscore: 10 gscore: 5
 Here Python3.5 is done       (7, 5) fscore: 10 gscore: 6
 in 26 steps                  ... Not done yet! ...
                              Python3.8 keeps going
                              to 36 steps total