You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1176 removes an error check in serac::FiniteElementVector which asserts that the DOF ordering is mfem::Ordering::byNODES. To prevent future regressions, we should do one (or both) of the following:
Add back this error check, instead checking that the ordering matches serac::ordering
Allow FiniteElementVector objects to have different orderings, but convert them to serac::ordering before using them. This is probably more complicated and error prone, but may be needed to support Tribol correctly.
The text was updated successfully, but these errors were encountered:
#1176 removes an error check in
serac::FiniteElementVector
which asserts that the DOF ordering ismfem::Ordering::byNODES
. To prevent future regressions, we should do one (or both) of the following:serac::ordering
FiniteElementVector
objects to have different orderings, but convert them toserac::ordering
before using them. This is probably more complicated and error prone, but may be needed to support Tribol correctly.The text was updated successfully, but these errors were encountered: