From 6ed077a782d36a8eb97586305c9114964b649c82 Mon Sep 17 00:00:00 2001 From: pjungeblut Date: Fri, 26 Dec 2014 14:19:31 +0100 Subject: information about given graph --- graph/maxCarBiMatch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/maxCarBiMatch.cpp b/graph/maxCarBiMatch.cpp index d46ce9d..fb9cb3d 100644 --- a/graph/maxCarBiMatch.cpp +++ b/graph/maxCarBiMatch.cpp @@ -1,4 +1,4 @@ -vector< vector > adjlist; +vector< vector > adjlist; //seems to work directed, from left to right vector pairs; //for every node, stores the matching node on the other side or -1 vector visited; @@ -21,4 +21,4 @@ int kuhn(int n, int m) { // n = nodes on left side (numbered 0..n-1), m = nodes ans += dfs(i); } return ans; //size of the MCBM -} \ No newline at end of file +} -- cgit v1.2.3