Skip to content

Commit

Permalink
Bug fix: potholes where always fixed/checked, regardless of user input.
Browse files Browse the repository at this point in the history
  • Loading branch information
micaeljtoliveira committed Feb 1, 2023
1 parent 26fb7c9 commit e51682d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/topogtools.f90
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ program topogtools
case('fill_fraction')
call set_args('--input:i "unset" --output:o "unset" --fraction 0.0', help_fill_fraction, version_text)
case ('fix_nonadvective')
call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', &
call set_args('--input:i "unset" --output:o "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', &
help_fix_nonadvective, version_text)
case ('check_nonadvective')
call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes T --coastal-cells F', &
call set_args('--input:i "unset" --vgrid "ocean_vgrid.nc" --potholes F --coastal-cells F', &
help_check_nonadvective, version_text)
case ('mask')
call set_args('--input:i "unset" --output:o "unset"', help_mask, version_text)
Expand Down

0 comments on commit e51682d

Please sign in to comment.