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:14 +05:30
committed by GitHub
parent 7814512861
commit 0aeb8e1e2d

View File

@@ -184,8 +184,8 @@ bool BGraph::bfs()
/**
* Function documentation
* @param u represents position of vertex
* @returns 'true' if there is an augmenting path beginning with free vertex u
* @returns 'false' if there is no augmenting path beginning with free vertex u
* @returns `true` if there is an augmenting path beginning with free vertex u
* @returns `false` if there is no augmenting path beginning with free vertex u
*/
bool BGraph::dfs(int u)
{