@@ -47,7 +47,7 @@ pmc::input generateMockInput() {
4747 * @param adj a bool** to the adjcency matrix
4848 * @param nodes number of nodes in the graph
4949 */
50- void printAdjMatirx (const std::vector<std::vector<bool >>& adj, int nodes) {
50+ void printAdjMatirx (const std::vector<std::vector<pmc::bool_wrapper >>& adj, int nodes) {
5151 std::cout << " Adjacency matrix: " << std::endl;
5252 for (auto & i : adj) {
5353 for (auto j : i) {
@@ -158,7 +158,7 @@ TEST(PMCTest, FindMaximumClique1) {
158158 }
159159
160160 // lower-bound of max clique
161- vector<int > C;
161+ std:: vector<int > C;
162162 if (in.lb == 0 && in.heu_strat != " 0" ) { // skip if given as input
163163 pmc::pmc_heu maxclique (G, in);
164164 in.lb = maxclique.search (G, C);
@@ -202,7 +202,7 @@ TEST(PMCTest, FindMaximumClique2) {
202202 }
203203
204204 // lower-bound of max clique
205- vector<int > C;
205+ std:: vector<int > C;
206206 if (in.lb == 0 && in.heu_strat != " 0" ) { // skip if given as input
207207 pmc::pmc_heu maxclique (G, in);
208208 in.lb = maxclique.search (G, C);
@@ -245,7 +245,7 @@ TEST(PMCTest, FindMaximumClique3) {
245245 }
246246
247247 // lower-bound of max clique
248- vector<int > C;
248+ std:: vector<int > C;
249249 if (in.lb == 0 && in.heu_strat != " 0" ) { // skip if given as input
250250 pmc::pmc_heu maxclique (G, in);
251251 in.lb = maxclique.search (G, C);
@@ -335,7 +335,7 @@ TEST(PMCTest, FindMaximumCliqueSingleThreaded) {
335335 }
336336
337337 // lower-bound of max clique
338- vector<int > C;
338+ std:: vector<int > C;
339339 if (in.lb == 0 && in.heu_strat != " 0" ) { // skip if given as input
340340 pmc::pmc_heu maxclique (G, in);
341341 in.lb = maxclique.search (G, C);
@@ -387,7 +387,7 @@ TEST(PMCTest, FindMaximumCliqueMultiThreaded) {
387387 }
388388
389389 // lower-bound of max clique
390- vector<int > C;
390+ std:: vector<int > C;
391391 if (in.lb == 0 && in.heu_strat != " 0" ) { // skip if given as input
392392 pmc::pmc_heu maxclique (G, in);
393393 in.lb = maxclique.search (G, C);
0 commit comments