Skip to content
Snippets Groups Projects
Commit 1f1adf37 authored by Thomas De Maet's avatar Thomas De Maet
Browse files

dg: step forward in parallelizing GW-SW coupling

parent e66e9e63
Branches
Tags
No related merge requests found
......@@ -297,7 +297,7 @@ int PartitionMesh(GModel *const model, meshPartitionOptions &options)
model->recomputeMeshPartitions();
if (options.createPartitionBoundaries || options.createGhostCells)
CreatePartitionBoundaries (model, options.createGhostCells);
CreatePartitionBoundaries (model, options.createGhostCells, options.createAllDims);
Msg::StatusBar(true, "Done partitioning graph");
return 0;
......
......@@ -19,6 +19,7 @@ class meshPartitionOptions
int renumber;
bool createPartitionBoundaries;
bool createGhostCells;
bool createAllDims;
// Chaco
int global_method; // 1 - Multilevel-KL
......@@ -123,6 +124,7 @@ class meshPartitionOptions
refine_algorithm = 3;
createPartitionBoundaries = true;
createGhostCells = true;
createAllDims = false;
triWeight = 1;
quaWeight = 1;
tetWeight = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment