Skip to content

Commit

Permalink
Should have done this last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
psakievich committed Oct 24, 2023
1 parent 40a3cca commit 373e607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/ngp_algorithms/GeometryInteriorAlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class GeometryInteriorAlg : public Algorithm

void impl_compute_edge_area_vector();
void impl_compute_dual_nodal_volume();
void impl_negative_jacobian_check(bool dumpMeshOnFailure = false);
void impl_negative_jacobian_check();

private:
ElemDataRequests dataNeeded_;
Expand Down
2 changes: 1 addition & 1 deletion src/ngp_algorithms/GeometryInteriorAlg.C
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void
GeometryInteriorAlg<AlgTraits>::execute()
{
if (realm_.checkJacobians_) {
impl_negative_jacobian_check(realm_.outputFailedJacobians_);
impl_negative_jacobian_check();
}

impl_compute_dual_nodal_volume();
Expand Down

0 comments on commit 373e607

Please sign in to comment.