I am implementing dijkstra with weight for directed graph :-
path=nx.dijkstra_path(G, 1, 4, weight='weight')
When I print computed path it shows following:-
Computed weighted dijkstra path is: [1, 2, 3, 4]
Computed weighted dijkstra path is: [4, 3, 2, 1]
Is it normal that reverse path is computed as well. I was only expecting forward path. Why this is happening?
Additionally in mininet after some time it again prints computed path althought I have not issued any more command. There was only one iperf command b/w 2 hosts.
Could anyone please explain these 2 issues for me.