mirror of
https://github.com/cosmo-sims/MUSIC.git
synced 2024-09-16 13:33:46 +02:00
fixed another typo
This commit is contained in:
parent
cc12cd8fcf
commit
ffd49efc49
1 changed files with 2 additions and 2 deletions
|
@ -543,10 +543,10 @@ void coarsen_density(const refinement_hierarchy &rh, GridHierarchy<real_t> &u, b
|
|||
|| rh.size(i, 0) != u.get_grid(i)->size(0) || rh.size(i, 1) != u.get_grid(i)->size(1) || rh.size(i, 2) != u.get_grid(i)->size(2))
|
||||
{
|
||||
u.cut_patch(i, rh.offset_abs(i, 0), rh.offset_abs(i, 1), rh.offset_abs(i, 2),
|
||||
rh.size(i, 0), rh.size(i, 1), rh.size(i, 2), benforce_coarse);
|
||||
rh.size(i, 0), rh.size(i, 1), rh.size(i, 2), !bfourier_coarsening );
|
||||
}
|
||||
}
|
||||
if( !fourier_coarsening ){
|
||||
if( !bfourier_coarsening ){
|
||||
normalize_levelmin_density( u );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue