@@ -254,7 +254,7 @@ using graph::HKGraph;
254
254
*/
255
255
void tests (){
256
256
// Sample test case 1
257
- int v1a = 3 , v1b = 5 , e1 = 2 ; // vertices of left side, right side and edges
257
+ int v1a = 3 , v1b = 5 ; // vertices of left side, right side and edges
258
258
HKGraph g1 (v1a, v1b); // execute the algorithm
259
259
260
260
g1.addEdge (0 ,1 );
@@ -266,7 +266,7 @@ void tests(){
266
266
assert (res1 == expected_res1); // assert check to ensure that the algorithm executed correctly for test 1
267
267
268
268
// Sample test case 2
269
- int v2a = 4 , v2b = 4 , e2 = 6 ; // vertices of left side, right side and edges
269
+ int v2a = 4 , v2b = 4 ; // vertices of left side, right side and edges
270
270
HKGraph g2 (v2a, v2b); // execute the algorithm
271
271
272
272
g2.addEdge (1 ,1 );
@@ -282,7 +282,7 @@ void tests(){
282
282
assert (res2 == expected_res2); // assert check to ensure that the algorithm executed correctly for test 2
283
283
284
284
// Sample test case 3
285
- int v3a = 6 , v3b = 6 , e3 = 4 ; // vertices of left side, right side and edges
285
+ int v3a = 6 , v3b = 6 ; // vertices of left side, right side and edges
286
286
HKGraph g3 (v3a, v3b); // execute the algorithm
287
287
288
288
g3.addEdge (0 ,1 );
0 commit comments