Skip to content

Commit

Permalink
Fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
fdrmrc committed Oct 7, 2024
1 parent 83cfad7 commit ae127c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/poly_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -1932,7 +1932,8 @@ namespace dealii::PolyUtils
SparseMatrix<typename MatrixType::value_type>>));

Assert((dynamic_cast<const FE_SimplexDGP<dim> *>(&fe_dg) != nullptr),
DEAL_II_NOT_IMPLEMENTED());
ExcNotImplemented(
"Implemented only for simplex meshes for the time being."));

Assert(dof_handler.get_triangulation().all_reference_cells_are_simplex(),
ExcNotImplemented());
Expand Down

0 comments on commit ae127c0

Please sign in to comment.