From 0581f3718a1a124f737b9b0fcad9b73cdb51bd7a Mon Sep 17 00:00:00 2001 From: "@8848hg" <53469557+Himalay12@users.noreply.github.com> Date: Tue, 29 Sep 2020 16:55:15 +0530 Subject: [PATCH] Update hopcroft_karp.cpp --- graph/hopcroft_karp.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/graph/hopcroft_karp.cpp b/graph/hopcroft_karp.cpp index a350e969e..35b80900f 100644 --- a/graph/hopcroft_karp.cpp +++ b/graph/hopcroft_karp.cpp @@ -226,16 +226,9 @@ bool BGraph::dfs(int u) BGraph::BGraph():NIL(0),INF(INT_MAX) {} -// Default Constructor for initialization -BGraph::BGraph(){ - NIL=0; - INF=INT_MAX; -} - // Constructor for initialization BGraph::BGraph(int m, int n):NIL(0),INF(INT_MAX) { - this->BGraph(); this->m = m; this->n = n; adj = std::vector >(m + 1);