mirror of
https://github.com/NGSolve/netgen.git
synced 2026-05-31 01:06:10 +08:00
preparations to switch T_POINTS to ngcore::Array
This commit is contained in:
@@ -4008,7 +4008,8 @@ namespace netgen
|
||||
// NgProfiler::StartTimer (timer_vals);
|
||||
NgArray<double,PointIndex::BASE> vertval(mesh->GetNP());
|
||||
NgArray<bool,PointIndex::BASE> posval(mesh->GetNP());
|
||||
for (PointIndex pi = vertval.Begin(); pi < vertval.End(); pi++)
|
||||
// for (PointIndex pi = vertval.Begin(); pi < vertval.End(); pi++)
|
||||
for (PointIndex pi : vertval.Range())
|
||||
{
|
||||
Point<3> vert = (*mesh)[pi];
|
||||
vertval[pi] =
|
||||
|
||||
Reference in New Issue
Block a user