Skip to content

Commit

Permalink
Menù: added parallel option
Browse files Browse the repository at this point in the history
  • Loading branch information
Serena Canavero s314325 committed Oct 28, 2023
1 parent 12a4307 commit fa8af93
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ int main() {
cout << "Running parallel partitioning - ()" << endl;
cout << "How many partitions should be found in graph?" << endl;
cin >> requestedPartitions;
cout << "How many threads should be employed?" << endl;
cin >> numThreads;
partitioning_p(g, requestedPartitions, numThreads);
break;
case 'C':
if (g == nullptr) {
Expand Down

0 comments on commit fa8af93

Please sign in to comment.