Skip to content

Commit

Permalink
Merge pull request #164 from marcfehling/fix-assert
Browse files Browse the repository at this point in the history
Fix Assert.
  • Loading branch information
bangerth authored Oct 22, 2023
2 parents 2a4bb61 + 0df6744 commit dbcad22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ namespace Cook_Membrane
break;
}
}
AssertThrow(vertical_tip_displacement > 0.0, ExcMessage("Found no cell with point inside!"))
AssertThrow(vertical_tip_displacement > 0.0, ExcMessage("Found no cell with point inside!"));

std::cout << "Vertical tip displacement: " << vertical_tip_displacement
<< "\t Check: " << vertical_tip_displacement_check
Expand Down

0 comments on commit dbcad22

Please sign in to comment.