Skip to content

Commit

Permalink
bug in sparse aeitr
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed May 24, 2014
1 parent 858c33f commit 1670050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/001 undirected/online/data/sparse.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ var sparse_graph_t = function(){

while(e !== this.eend){

if(fn.call(this, e[4], e[0], e[1], e[2])) return e[4];
if(fn.call(this, e, e[0], e[1], e[2])) return e[4];

e = e[4];
}
Expand Down

0 comments on commit 1670050

Please sign in to comment.