Misc patches and missed changes

This commit is contained in:
jtclemm
2024-01-22 22:13:29 -07:00
parent 6dc676247f
commit 7c7f07e28d
4 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing author: Pieter in 't Veld (SNL), Joel Clemmer (SNL)
Contributing author: Pieter in 't Veld (SNL)
------------------------------------------------------------------------- */
#include "fix_deform.h"
@ -759,7 +759,7 @@ void FixDeform::apply_deformation()
if (mask[i] & groupbit)
domain->x2lamda(x[i], x[i]);
for (auto ifix : rfix)
for (auto &ifix : rfix)
ifix->deform(0);
}
@ -798,7 +798,7 @@ void FixDeform::apply_deformation()
if (mask[i] & groupbit)
domain->lamda2x(x[i], x[i]);
for (auto ifix : rfix)
for (auto &ifix : rfix)
ifix->deform(1);
}
}