Skip to content
Snippets Groups Projects
Commit 4cf24c1f authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[el2p] Get rid of remaining map() method.

(reviewed by martinb)
parent ff1918f4
No related branches found
No related tags found
1 merge request!31Feature/colebrookwhiteboundarylayer
......@@ -92,9 +92,9 @@ private:
// loop over all element vertices
int n = element.template count<dim>();
for (int i = 0; i < n - 1; ++i) {
int globalI = this->problem().vertexMapper().map(element, i, dim);
int globalI = this->problem().vertexMapper().subIndex(element, i, dim);
for (int j = i + 1; j < n; ++j) {
int globalJ = this->problem().vertexMapper().map(element, j, dim);
int globalJ = this->problem().vertexMapper().subIndex(element, j, dim);
// make sure that vertex j is in the neighbor set
// of vertex i and vice-versa
neighbors[globalI].insert(globalJ);
......
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