From d551d98bf177ec1e9d5bdc7205523cd6e11a7c45 Mon Sep 17 00:00:00 2001 From: Krishna Pal Deora <53469625+Krishnapal4050@users.noreply.github.com> Date: Thu, 1 Oct 2020 04:45:34 +0530 Subject: [PATCH] Update graph/hopcroft_karp.cpp Co-authored-by: David Leal --- graph/hopcroft_karp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/hopcroft_karp.cpp b/graph/hopcroft_karp.cpp index 88d9d5754..2193d92ba 100644 --- a/graph/hopcroft_karp.cpp +++ b/graph/hopcroft_karp.cpp @@ -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) {