From fd1f2b36e95c03625297b7b8cba3b1a04a0cc0ed Mon Sep 17 00:00:00 2001 From: mzuenni Date: Tue, 10 Jan 2023 11:40:09 +0100 Subject: change whitespaces --- graph/blossom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graph/blossom.cpp') diff --git a/graph/blossom.cpp b/graph/blossom.cpp index cc19a2b..b3983ad 100644 --- a/graph/blossom.cpp +++ b/graph/blossom.cpp @@ -6,7 +6,7 @@ struct GM { int head, tail; GM(int n) : adjlist(n), pairs(n + 1, n), first(n + 1, n), - que(n), label(n + 1, {-1, -1}) {} + que(n), label(n + 1, {-1, -1}) {} void rematch(int v, int w) { int t = pairs[v]; pairs[v] = w; @@ -23,7 +23,7 @@ struct GM { int findFirst(int u) { return label[first[u]].first < 0 ? first[u] - : first[u] = findFirst(first[u]); + : first[u] = findFirst(first[u]); } void relabel(int x, int y) { -- cgit v1.2.3