Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into bugfix/integral-symmetry-f…
Browse files Browse the repository at this point in the history
…actor
  • Loading branch information
dinatraykova committed Nov 5, 2024
2 parents 07fbddc + 92afd01 commit 4eadfd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "pr_reviewer=${PR_REVIEWER}" >> $GITHUB_ENV
- name: Make pull request in GRChombo.github.io
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.REPO_GITHUB_TOKEN }}
path: 'GRChombo.github.io'
Expand Down
7 changes: 3 additions & 4 deletions Examples/ScalarField/ScalarFieldLevel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,13 @@ void ScalarFieldLevel::computeTaggingCriterion(
FArrayBox &tagging_criterion, const FArrayBox &current_state,
const FArrayBox &current_state_diagnostics)
{
BoxLoops::loop(
FixedGridsTaggingCriterion(m_dx, m_level, 2.0 * m_p.L, m_p.center),
current_state, tagging_criterion);
BoxLoops::loop(FixedGridsTaggingCriterion(m_dx, m_level, m_p.L, m_p.center),
current_state, tagging_criterion);
}
void ScalarFieldLevel::specificPostTimeStep()
{
#ifdef USE_AHFINDER
if (m_p.AH_activate && m_level == m_p.AH_params.level_to_run)
m_bh_amr.m_ah_finder.solve(m_dt, m_time, m_restart_time);
#endif
}
}

0 comments on commit 4eadfd3

Please sign in to comment.