Skip to content

Commit 5062d4f

Browse files
author
Cameron Custer
committed
use functional cast in hungarian doc example
1 parent 7bfb345 commit 5062d4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

library/flow/hungarian.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
//! https://e-maxx.ru/algo/assignment_hungary
33
//! @code
4-
//! vector cost(n+1,vector(m+1,(ll)0));
4+
//! vector cost(n+1,vector(m+1,ll(0)));
55
//! auto [min_weight, l_to_r] = hungarian(cost);
66
//! @endcode
77
//! cost[i][j] = edge weight, 1<=i<=n<=m; 1<=j<=m

0 commit comments

Comments
 (0)