diff --git a/graph/hopcroft_karp.cpp b/graph/hopcroft_karp.cpp index b1d830daf..882b09224 100644 --- a/graph/hopcroft_karp.cpp +++ b/graph/hopcroft_karp.cpp @@ -55,8 +55,10 @@ const int NIL = 0; const int INF = INT_MAX; -// A class to represent Bipartite graph for -// Hopcroft Karp implementation +/** + * @brief Represents Bipartite graph for + * Hopcroft Karp implementation + */ class BGraph { // m and n are number of vertices on left