UNPKG
@dagrejs/graphlib
Version:
latest (2.2.4)
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.13
2.1.12
2.1.11
2.1.10
2.1.4
2.1.3
A directed and undirected multi-graph library
github.com/dagrejs/graphlib
dagrejs/graphlib
@dagrejs/graphlib
/
lib
/
alg
/
dijkstra-all.js
11 lines
(8 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
dijkstra =
require
(
"./dijkstra"
);
module
.
exports
= dijkstraAll;
function
dijkstraAll
(
g, weightFunc, edgeFunc
) {
return
g.
nodes
().
reduce
(
function
(
acc, v
) { acc[v] =
dijkstra
(g, v, weightFunc, edgeFunc);
return
acc; }, {}); }