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
The x vector is of size 1, while the width is equal to vdof 3 * 250 = 750. The reason is that the object construction in TestUtils.cpp:1747 is done using initializer list:
mfem::Vector ones{ fespace.GetVSize() };
This actually creates a vector of size 1 with the value 750. I think we would like to use the regular constructor to create a vector of size 750.
mfem::Vector ones( fespace.GetVSize() );
This error occurs at multiple places.
The text was updated successfully, but these errors were encountered:
The test
tribol/MfemCommonPlaneTest.common_plane/0
is crashing because of this failed assertion:The x vector is of size 1, while the width is equal to vdof 3 * 250 = 750. The reason is that the object construction in TestUtils.cpp:1747 is done using initializer list:
This actually creates a vector of size 1 with the value 750. I think we would like to use the regular constructor to create a vector of size 750.
This error occurs at multiple places.
The text was updated successfully, but these errors were encountered: