Skip to content

Commit

Permalink
Merge pull request #300 from kbarnhart/up_to_999_regions
Browse files Browse the repository at this point in the history
Switch i2 to i3 for number of regions and rr regions
  • Loading branch information
rjleveque authored Feb 11, 2025
2 parents 2d9d076 + a2373f1 commit b49a356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/2d/regions_module.f90
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ subroutine set_regions(fname)
call opendatafile(unit,'regions.data')
endif

read(unit,"(i2)") num_regions
read(unit,*) num_regions
if (num_regions == 0) then
write(parmunit,*) ' No regions specified for refinement'

Expand Down Expand Up @@ -118,7 +118,7 @@ subroutine set_rregions(fname)
call opendatafile(unit,'flagregions.data')
endif

read(unit,"(i2)") num_rregions
read(unit,*) num_rregions
if (num_rregions == 0) then
write(parmunit,*) ' No ruled regions specified for refinement'

Expand Down

0 comments on commit b49a356

Please sign in to comment.