Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the lemon graph library in C++. I'm trying to use Dijkstra to find the shortest path between a source and the rest of the nodes; do edge distances have to be of type int? It seems that I cannot use type double....or am I missing something?

Dijkstra dijkstra(g, edge_weights);

works under ListDigraph::ArcMap edge_weights(g);

but not under ListDigraph::ArcMap edge_weights(g);

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.