unit test for graphs_floyd_warshall

This commit is contained in:
Ajmera, Mahita SI/HZR-IDSA 2024-10-17 09:59:27 +02:00
parent 03a42510b0
commit 91fd1d8bc8
2 changed files with 81 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
# floyd_warshall.py # floyd_warshall.py
""" """
The problem is to find the shortest distance between all pairs of vertices in a The problem is to find the shortest distance between all pairs of vertices in a
@ -31,6 +33,26 @@ def floyd_warshall(graph, v):
4. The above is repeated for each vertex k in the graph. 4. The above is repeated for each vertex k in the graph.
5. Whenever distance[i][j] is given a new minimum value, next vertex[i][j] is 5. Whenever distance[i][j] is given a new minimum value, next vertex[i][j] is
updated to the next vertex[i][k]. updated to the next vertex[i][k].
>>> num_vertices = 3
>>> graph = [
... [float('inf'), float('inf'), float('inf')],
... [float('inf'), float('inf'), float('inf')],
... [float('inf'), float('inf'), float('inf')]
... ]
>>> for i in range(num_vertices):
... graph[i][i] = 0.0
>>> graph[0][1] = 2
>>> graph[1][0] = 1
>>> expected = [
... [0, 2, float('inf')],
... [1, 0, float('inf')],
... [float('inf'), float('inf'), 0]
... ]
>>> dist, _ = floyd_warshall(graph, num_vertices)
>>> dist == expected
True
""" """
dist = [[float("inf") for _ in range(v)] for _ in range(v)] dist = [[float("inf") for _ in range(v)] for _ in range(v)]

View File

@ -0,0 +1,59 @@
#!/usr/bin/env python3
import pytest
from graphs.graphs_floyd_warshall import floyd_warshall
def test_no_edges():
graph = [
[0, float("inf"), float("inf")],
[float("inf"), 0, float("inf")],
[float("inf"), float("inf"), 0],
]
expected = [
[0, float("inf"), float("inf")],
[float("inf"), 0, float("inf")],
[float("inf"), float("inf"), 0],
]
dist, _ = floyd_warshall(graph, 3)
assert dist == expected
def test_example_input():
num_vertices = 3
graph = [
[float("inf"), float("inf"), float("inf")],
[float("inf"), float("inf"), float("inf")],
[float("inf"), float("inf"), float("inf")],
]
for i in range(num_vertices):
graph[i][i] = 0.0
graph[0][1] = 2
graph[1][0] = 1
expected = [
[0, 2, float("inf")],
[1, 0, float("inf")],
[float("inf"), float("inf"), 0],
]
dist, _ = floyd_warshall(graph, num_vertices)
assert dist == expected
if __name__ == "__main__":
pytest.main()
def test_unreachable_vertices():
graph = [
[0, 1, float("inf")],
[float("inf"), 0, 2],
[float("inf"), float("inf"), 0],
]
expected = [[0, 1, 3], [float("inf"), 0, 2], [float("inf"), float("inf"), 0]]
dist, _ = floyd_warshall(graph, 3)
assert dist == expected
if __name__ == "__main__":
pytest.main()