Skip to content

Commit

Permalink
windows fix for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sunethwarna committed Jun 27, 2024
1 parent 62993ae commit 4bf5506
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ void CreateBushingElementModelPart(
}

auto p_prop = rModelPart.CreateNewProperties(1);
rModelPart.CreateNewElement("BushingElement3D2N", 1, std::vector<long unsigned int>({1UL, 2UL}), p_prop);
std::vector<IndexType> node_ids({1, 2});
rModelPart.CreateNewElement("BushingElement3D2N", 1, node_ids, p_prop);

if (IsLinearStiffnessUsed) {
// constant stiffness based
Expand Down

0 comments on commit 4bf5506

Please sign in to comment.