Skip to content

Commit

Permalink
fix: parent tree genetic value calculation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Campos committed Sep 27, 2024
1 parent 3cb6a97 commit d6f1221
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public PtCalculationResDto calculatePtVals(PtValsCalReqDto ptVals) {
parentPropOrchPoll = zero;
} else {
parentPropOrchPoll =
parentTreeRow.coneCount().divide(totalPollenCount, DIVISION_SCALE, halfUp);
parentTreeRow.pollenCount().divide(totalPollenCount, DIVISION_SCALE, halfUp);
}

// --col:X
Expand Down

0 comments on commit d6f1221

Please sign in to comment.