Skip to content

Commit

Permalink
Starting EMP091
Browse files Browse the repository at this point in the history
  • Loading branch information
smithkm committed Oct 30, 2023
1 parent 6c899a9 commit 705a410
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vdyp-fip/src/main/java/ca/bc/gov/nrs/vdyp/fip/FipStart.java
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,12 @@ uc.index, treesPerHectare(baseAreaUtil.getCoe(uc.index), quadMeanDiameterUtil.ge
// YUC1R
reconcileComponents(baseAreaUtil, treesPerHectareUtil, quadMeanDiameterUtil);

if (volumeComputeMode == VolumeComputeMode.ZERO) {
throw new UnsupportedOperationException("TODO");
} else {
// EMP091

}
}
}

Expand Down Expand Up @@ -1271,7 +1277,7 @@ void reconcileComponents(
} else {
reconcileComponentsMode2Check(baseAreaUtil, treesPerHectareUtil, quadMeanDiameterUtil);
}

}

private final static List<UtilityClass> MODE_1_RECONCILE_AVAILABILITY_CLASSES = List
Expand Down

0 comments on commit 705a410

Please sign in to comment.