Skip to content

Commit 4b3b8f7

Browse files
committed
small fix
1 parent ba02bd0 commit 4b3b8f7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

algorithms/graph/SPFA.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (C) 2014 Felipe Ribeiro
2+
* Copyright (C) 2014 Shu Ding
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to

main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
var lib = {
2525
Graph: {
2626
topologicalSort: require('./algorithms/graph/topological_sort'),
27-
dijkstra: require('./algorithms/graph/dijkstra')
27+
dijkstra: require('./algorithms/graph/dijkstra'),
28+
SPFA: require('./algorithms/graph/SPFA')
2829
},
2930
Math: {
3031
fibonacci: require('./algorithms/math/fibonacci'),

0 commit comments

Comments
 (0)