summaryrefslogtreecommitdiff
path: root/graph/maxWeightBipartiteMatching.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graph/maxWeightBipartiteMatching.cpp')
-rw-r--r--graph/maxWeightBipartiteMatching.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graph/maxWeightBipartiteMatching.cpp b/graph/maxWeightBipartiteMatching.cpp
index ef99232..e7e186e 100644
--- a/graph/maxWeightBipartiteMatching.cpp
+++ b/graph/maxWeightBipartiteMatching.cpp
@@ -54,6 +54,6 @@ double match(int l, int r) {
y = prec;
}}
// Wert des Matchings
- return accumulate(lx.begin(), lx.end(), 0.0) +
- accumulate(ly.begin(), ly.end(), 0.0);
+ return accumulate(all(lx), 0.0) +
+ accumulate(all(ly), 0.0);
}