Skip to content

Commit

Permalink
Function name for check_if_excised corrected in ExcisionTest.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelBrady committed Aug 15, 2023
1 parent 7073122 commit f82f142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/KerrBHScalarTest/ExcisionTest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ template <class matter_t, class background_t> class ExcisionTest
void compute(Cell<double> current_cell) const
{
const Coordinates<double> coords(current_cell, m_dx, m_center);
bool do_I_excise = m_background.excise(coords);
bool do_I_excise = m_background.check_if_excised(coords);
if (do_I_excise)
{
// the matter rhs vars within the excision zone
Expand Down

0 comments on commit f82f142

Please sign in to comment.