Skip to content

Commit 1b2a075

Browse files
committed
fix the ford fulkerson example edge bug
1 parent d185976 commit 1b2a075

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

examples/example-ford-fulkerson.html

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ <h2>MaxFlow-MinCut (Ford-Fulkerson)</h2>
7373
for(var i = 0; i < adj_v.length; ++i) {
7474
var e = adj_v[i];
7575
var w = e.other(v);
76+
if(w != e.to()) continue;
7677
if(e.highlighted) continue;
7778
g_edges.push({
7879
from: v,

test/ford-fulkerson-spec.js

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ describe('MaxFlow-MinCut', function(){
2020
g.addEdge(new jsgraphs.FlowEdge(6, 2, 6));
2121
g.addEdge(new jsgraphs.FlowEdge(6, 7, 10));
2222

23+
g.node(2).label = 'Hello';
24+
g.edge(0, 1).label = 'World';
25+
2326
var source = 0;
2427
var target = 7;
2528
var ff = new jsgraphs.FordFulkerson(g, source, target);

0 commit comments

Comments
 (0)