Skip to content

Commit

Permalink
Unit tests for Lagrange Pyramid18
Browse files Browse the repository at this point in the history
  • Loading branch information
roystgnr committed Dec 8, 2022
1 parent b1273d2 commit d914af6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/fe/fe_lagrange_test.C
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ INSTANTIATE_FETEST(THIRD, LAGRANGE, PRISM21);
INSTANTIATE_FETEST(FIRST, LAGRANGE, PYRAMID5);
INSTANTIATE_FETEST(SECOND, LAGRANGE, PYRAMID13);
INSTANTIATE_FETEST(SECOND, LAGRANGE, PYRAMID14);
INSTANTIATE_FETEST(THIRD, LAGRANGE, PYRAMID18);
#endif
3 changes: 2 additions & 1 deletion tests/fe/fe_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ Gradient rational_test_grad (const Point& p,
#define FE_CAN_TEST_CUBIC \
(((family != LAGRANGE && family != L2_LAGRANGE) || \
(elem_type != TRI7 && elem_type != TET14 && \
elem_type != PRISM20 && elem_type != PRISM21)) && order > 2)
elem_type != PRISM20 && elem_type != PRISM21 && \
elem_type != PYRAMID18)) && order > 2)


template <Order order, FEFamily family, ElemType elem_type, unsigned int build_nx>
Expand Down

0 comments on commit d914af6

Please sign in to comment.