Skip to content

Commit

Permalink
Include Kruskal's algorithm in main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
eush77 committed Jul 22, 2014
1 parent 5c1bc9e commit 259d3ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ var lib = {
SPFA: require('./algorithms/graph/SPFA'),
bellmanFord: require('./algorithms/graph/bellman_ford'),
eulerPath: require('./algorithms/graph/euler_path'),
depthFirstSearch: require('./algorithms/graph/depth_first_search')
depthFirstSearch: require('./algorithms/graph/depth_first_search'),
kruskal: require('./algorithms/graph/kruskal'),
},
Math: {
fibonacci: require('./algorithms/math/fibonacci'),
Expand Down

0 comments on commit 259d3ef

Please sign in to comment.