Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guilara committed Nov 13, 2023
1 parent a04d2e6 commit 3c7c989
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Domain/Creators/Sphere.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@ Domain<3> Sphere::create_domain() const {
block_id < num_blocks_per_shell_;
// False if block_id is in the last shell
const bool use_rigid_translation =
block_id + num_blocks_per_shell_ < num_blocks_;
block_id + num_blocks_per_shell_ + (fill_interior_ ? 1 : 0) <
num_blocks_;
block_maps_grid_to_distorted[block_id] =
hard_coded_options.grid_to_distorted_map(
include_distorted_map_in_first_shell);
Expand Down

0 comments on commit 3c7c989

Please sign in to comment.