Skip to content

Commit

Permalink
remove a conditional on fill_all from FillPatcher logic in FillPatch
Browse files Browse the repository at this point in the history
  • Loading branch information
hklion committed Jun 21, 2024
1 parent d7549a7 commit da47552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/BoundaryConditions/REMORA_FillPatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ REMORA::FillPatch (int lev, Real time, MultiFab& mf_to_fill, Vector<MultiFab*> c
if (cf_set_width > 0 &&
mf_box.ixType() == IndexType(IntVect(0,0,0))) {
FPr_c[lev-1].FillSet(mf_to_fill, time, null_bc, domain_bcs_type);
} else if (fill_all && cf_set_width >= 0) {
} else if (cf_set_width >= 0) {
if (mf_box.ixType() == IndexType(IntVect(1,0,0))) {
FPr_u[lev-1].FillSet(mf_to_fill, time, null_bc, domain_bcs_type);
} else if (mf_box.ixType() == IndexType(IntVect(0,1,0))) {
Expand Down

0 comments on commit da47552

Please sign in to comment.