Skip to content

Commit

Permalink
Added parentheses around an expression.
Browse files Browse the repository at this point in the history
Hopefully this will result in a baseline that has the same answer
changes as what the commit linked here gives, which Bill suggests
is an order-of-operations effect:
ESCOMP#2047
  • Loading branch information
samsrabin committed Jul 6, 2023
1 parent bb2a8d2 commit 62d2d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biogeochem/CNPhenologyMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2821,7 +2821,7 @@ subroutine CNOffsetLitterfall (num_soilp, filter_soilp, &

! Send the remaining grain to the food product pool
repr_grainc_to_food(p,k) = t1 * reproductivec(p,k) &
+ cpool_to_reproductivec(p,k) - repr_grainc_to_seed(p,k)
+ (cpool_to_reproductivec(p,k) - repr_grainc_to_seed(p,k))
repr_grainn_to_food(p,k) = t1 * reproductiven(p,k) &
+ npool_to_reproductiven(p,k) - repr_grainn_to_seed(p,k)
end do
Expand Down

0 comments on commit 62d2d8d

Please sign in to comment.