We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba02bd0 commit 4b3b8f7Copy full SHA for 4b3b8f7
algorithms/graph/SPFA.js
@@ -1,5 +1,5 @@
1
/**
2
- * Copyright (C) 2014 Felipe Ribeiro
+ * Copyright (C) 2014 Shu Ding
3
*
4
* Permission is hereby granted, free of charge, to any person obtaining a copy
5
* of this software and associated documentation files (the "Software"), to
main.js
@@ -24,7 +24,8 @@
24
var lib = {
25
Graph: {
26
topologicalSort: require('./algorithms/graph/topological_sort'),
27
- dijkstra: require('./algorithms/graph/dijkstra')
+ dijkstra: require('./algorithms/graph/dijkstra'),
28
+ SPFA: require('./algorithms/graph/SPFA')
29
},
30
Math: {
31
fibonacci: require('./algorithms/math/fibonacci'),
0 commit comments