Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit ebd6cfcc authored by frey_m's avatar frey_m
Browse files

AMR-Trilinos: Use reduced communicator

parent 15870a41
No related branches found
No related tags found
1 merge request!31Master
...@@ -234,5 +234,7 @@ void AmrMultiGridLevel<MatrixType, VectorType>::buildMap_m(const Teuchos::RCP<co ...@@ -234,5 +234,7 @@ void AmrMultiGridLevel<MatrixType, VectorType>::buildMap_m(const Teuchos::RCP<co
// numGlobalElements == N // numGlobalElements == N
int N = grids.numPts(); int N = grids.numPts();
map_p = Teuchos::rcp( new dmap_t(N, globalindices, baseIndex, comm, node) ); Teuchos::RCP<dmap_t> full = Teuchos::rcp( new dmap_t(N, globalindices, baseIndex, comm, node) );
map_p = full->removeEmptyProcesses();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment