Merge branch 'master' of github.com:mfem/mfem into float

This commit is contained in:
Dylan Copeland
2023-11-09 21:38:06 -08:00
89 changed files with 4059 additions and 2209 deletions
+4 -4
View File
@@ -1486,7 +1486,7 @@ void RT_R1D_SegmentElement::Project(const FiniteElement &fe,
else
{
fptype vk[Geometry::MaxDim];
DenseMatrix vshape(fe.GetDof(), fe.GetVDim());
DenseMatrix vshape(fe.GetDof(), fe.GetRangeDim());
fptype * nk_ptr = const_cast<fptype*>(nk);
@@ -1523,7 +1523,7 @@ void RT_R1D_SegmentElement::ProjectCurl(const FiniteElement &fe,
ElementTransformation &Trans,
DenseMatrix &curl) const
{
DenseMatrix curl_shape(fe.GetDof(), fe.GetVDim());
DenseMatrix curl_shape(fe.GetDof(), fe.GetRangeDim());
Vector curl_k(fe.GetDof());
fptype * nk_ptr = const_cast<fptype*>(nk);
@@ -1849,7 +1849,7 @@ void RT_R2D_FiniteElement::Project(const FiniteElement &fe,
else
{
fptype vk[Geometry::MaxDim];
DenseMatrix vshape(fe.GetDof(), fe.GetVDim());
DenseMatrix vshape(fe.GetDof(), fe.GetRangeDim());
fptype * nk_ptr = const_cast<fptype*>(nk);
@@ -1888,7 +1888,7 @@ void RT_R2D_FiniteElement::ProjectCurl(const FiniteElement &fe,
ElementTransformation &Trans,
DenseMatrix &curl) const
{
DenseMatrix curl_shape(fe.GetDof(), fe.GetVDim());
DenseMatrix curl_shape(fe.GetDof(), fe.GetRangeDim());
Vector curl_k(fe.GetDof());
fptype * nk_ptr = const_cast<fptype*>(nk);