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:57 +05:30
committed by GitHub
parent d551d98bf1
commit 8d1fc2769a

View File

@@ -240,8 +240,8 @@ BGraph::BGraph(int m, int n):NIL(0),INF(INT_MAX)
/**
* Function documentation
* @brief function to add edge from u to v
* @param 'u' is the position of first vertex
* @param 'v' is the position of second vertex
* @param u is the position of first vertex
* @param v is the position of second vertex
*/
void BGraph::addEdge(int u, int v)
{