Skip to content

Commit

Permalink
switched back to big example
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorySchwing committed Aug 12, 2021
1 parent e0a5911 commit 8eacb3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MainSimpleParallel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ int main(int argc, char *argv[])
std::cout << "Building G" << std::endl;
//Graph g("small.csv");
COO coordinateFormat;
// std::string filename = "small.csv";
std::string filename = "25_nodes.csv";
std::string filename = "small.csv";
// std::string filename = "25_nodes.csv";
coordinateFormat.BuildCOOFromFile(filename);
//coordinateFormat.BuildTheExampleCOO();

Expand All @@ -39,7 +39,7 @@ int main(int argc, char *argv[])
}
CSR csr(coordinateFormat);
Graph g(csr);
int k = 9;
int k = 15;
//int k = 4;
ParallelKernelization sk(g, k);
sk.TestAValueOfK(k);
Expand Down

0 comments on commit 8eacb3f

Please sign in to comment.