I've tried to create a samll graph and was wondering why it does not allow me to assign a weight parameter??
sources = rand(1:6, 10)
destinations = rand( 1:6, 10)
weights = 0.2.*rand(1:6, 10)
g = SimpleWeightedGraph(sources, destinations, weights)
Let's assume I could create a weighted graph, I've read the documentation and didn't find any command to be able to find the distance (or time--if it weighted based on time) between two nodes. Do you aware of any?
Thanks a lot for the package!