Skip to content
Snippets Groups Projects
Commit 7935c506 authored by Oliver Sander's avatar Oliver Sander
Browse files

[UGGrid] Copy entire vectors instead of looping over entries

Recently, dune-uggrid has started to replace C arrays by FieldVectors
for storing point positions.  Therefore copying such positions
in dune-grid can now use the assignment operator of FieldVector
instead of hand-coded loops.  This makes the code shorter.  It also
saves a few unnecessary calls to UGGridRenumberer.
parent f574df87
No related tags found
1 merge request!764[UGGrid] Use std::size_t as loop counter
Pipeline #75383 failed
......@@ -144,11 +144,7 @@ UGGridLevelIntersection<GridImp>::geometry () const
int ugIdx = UGGridRenumberer<dim-1>::verticesDUNEtoUG(i, intersectionGeometryType);
int cornerIdx = UG_NS<dim>::Corner_Of_Side(center_, neighborCount_, ugIdx);
typename UG_NS<dim>::Node* node = UG_NS<dim>::Corner(center_, cornerIdx);
for (int j=0; j<dim; j++)
coordinates[i][j] = node->myvertex->iv.x[j];
coordinates[i] = UG_NS<dim>::Corner(center_, cornerIdx)->myvertex->iv.x;
}
geometry_ = std::make_optional<GeometryImpl>(intersectionGeometryType, std::move(coordinates));
......@@ -342,8 +338,7 @@ UGGridLeafIntersection< GridImp >::geometry () const
int cornerIdx = UG_NS<dim>::Corner_Of_Side(center_, neighborCount_, i);
const typename UG_NS<dim>::Node* node = UG_NS<dim>::Corner(center_, cornerIdx);
for (int j=0; j<dim; j++)
coordinates[UGGridRenumberer<dim-1>::verticesUGtoDUNE(i, intersectionGeometryType)][j] = node->myvertex->iv.x[j];
coordinates[UGGridRenumberer<dim-1>::verticesUGtoDUNE(i, intersectionGeometryType)] = node->myvertex->iv.x;
}
......@@ -365,8 +360,7 @@ UGGridLeafIntersection< GridImp >::geometry () const
const FieldVector<UGCtype,dimworld>& worldPos = UG_NS<dim>::Corner(otherFace->first,cornerIdx)->myvertex->iv.x;
// and poke them into the Geometry
for (int j=0; j<dim; j++)
coordinates[UGGridRenumberer<dim-1>::verticesUGtoDUNE(i, intersectionGeometryType)][j] = worldPos[j];
coordinates[UGGridRenumberer<dim-1>::verticesUGtoDUNE(i, intersectionGeometryType)] = worldPos;
}
......
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