Skip to content

Commit

Permalink
Removed symmetry argument from uses of AMRReductions
Browse files Browse the repository at this point in the history
  • Loading branch information
the-florist committed Sep 8, 2024
1 parent f9fa5f3 commit cd53124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/BinaryBH/BinaryBHLevel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ void BinaryBHLevel::specificPostTimeStep()
if (m_level == 0)
{
AMRReductions<VariableType::diagnostic> amr_reductions(m_gr_amr);
double L2_Ham = amr_reductions.norm(c_Ham, m_p.symmetry_factor);
double L2_Mom = amr_reductions.norm(Interval(c_Mom1, c_Mom3), m_p.symmetry_factor);
double L2_Ham = amr_reductions.norm(c_Ham);
double L2_Mom = amr_reductions.norm(Interval(c_Mom1, c_Mom3));
SmallDataIO constraints_file(m_p.data_path + "constraint_norms",
m_dt, m_time, m_restart_time,
SmallDataIO::APPEND, first_step);
Expand Down

0 comments on commit cd53124

Please sign in to comment.