implemented edgescan

fixed hash finalization infinite recursion
This commit is contained in:
Andrew Ho
2025-02-04 15:13:29 -08:00
parent 38aaa74b52
commit 5ceda33e57
6 changed files with 159 additions and 8 deletions
+1 -1
View File
@@ -2285,7 +2285,7 @@ const Array<real_t>* Poly_1D::GetPointsArray(const int p, const int btype)
it = points_container.emplace(key, new Array<real_t>(p + 1, h_mt)).first;
val = it->second.get();
real_t* hptr = val->HostWrite();
quad_func.GivePolyPoints(p+1, hptr, qtype);
quad_func.GivePolyPoints(p + 1, hptr, qtype);
}
else
{