So i'm using pgrouting to compute shortest path on transit network, The cost of my graph is time, but the graph isn't "time dependent" - which means my arcs are available at every hour everyday, the cost is not the distance between station but the time it take to move from one point to another. I figured by doing the computation that pgr_astar (and even pgr_bdAstar) is slower than pgr_dijkstra. I thought it might be a factor problem for the heuristic.
My questions is :
Is it possible for a graph this simple with at least 1 millions of edge that pgr_astar and pgr_bdAstar are slower than pgr_dijkstra ? I tried pgr_astar on a lot of couple of stations very far away with all the possible heuristic comparing to pgr_dijkstra and every time pgr_dijkstra is faster (time_computation) but the result of the shortest path is the same. My graph are edge of transit line (Metro, Train, Tramway, Bus),