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