Is Dijkstra faster when using Fibonacci heap than with the Binary heap?
I did some experiments implementing Fibonacci heap on my own and using it in Dijkstra, I also checked the ready-to-use Fibonacci heap from fibheap library, but none of the implementations turned out to be faster in finding the shortest path with the use of Binary heap.
Is it possible that I made a mistake on some point or is that possible that Fibonacci heap is actually slower than Binary heap in context of shortest path finding in Dijsktra?