Update graph/hopcroft_karp.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Krishna Pal Deora
2020-10-01 04:45:34 +05:30
committed by GitHub
parent 0aeb8e1e2d
commit d551d98bf1

View File

@@ -227,8 +227,8 @@ BGraph::BGraph():NIL(0),INF(INT_MAX)
/**
* Function documentation
* @brief Constructor for initialization
* @param 'm' is the number of vertices on left side of Bipartite Graph
* @param 'n' is the number of vertices on right side of Bipartite Graph
* @param m is the number of vertices on left side of Bipartite Graph
* @param n is the number of vertices on right side of Bipartite Graph
*/
BGraph::BGraph(int m, int n):NIL(0),INF(INT_MAX)
{