Skip to content

Commit 6c48f27

Browse files
committed
remove space
1 parent f93a3b5 commit 6c48f27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atcoder/mincostflow.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ template <class Cap, class Cost> struct mcf_graph {
4444
return flow(s, t, std::numeric_limits<Cap>::max());
4545
}
4646
std::pair<Cap, Cost> flow(int s, int t, Cap flow_limit) {
47-
return slope(s, t, flow_limit).back();
47+
return slope(s, t, flow_limit).back();
4848
}
4949
std::vector<std::pair<Cap, Cost>> slope(int s, int t) {
5050
return slope(s, t, std::numeric_limits<Cap>::max());

0 commit comments

Comments
 (0)