Skip to content

Commit

Permalink
Consolidate Bank in common
Browse files Browse the repository at this point in the history
  • Loading branch information
smithkm committed Oct 17, 2024
1 parent 1082ad4 commit f8f55aa
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 469 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ public int getNSpecies() {
return nSpecies;
}

int[] getIndices() {
public int[] getIndices() {
return indices;
}

BecDefinition getBecZone() {
public BecDefinition getBecZone() {
return becZone;
}

Expand All @@ -162,7 +162,7 @@ BecDefinition getBecZone() {
* @param layer a (presumably modified) version of the layer.
* @throws ProcessingException
*/
void refreshBank(VdypLayer layer) throws ProcessingException {
public void refreshBank(VdypLayer layer) throws ProcessingException {

if (!this.layer.equals(layer)) {
throw new IllegalArgumentException(
Expand Down Expand Up @@ -365,7 +365,7 @@ private float sumSpeciesUtilizationClassValues(float[][] ucValues, UtilizationCl
*
* @return as described
*/
VdypLayer buildLayerFromBank() {
public VdypLayer buildLayerFromBank() {

transferUtilizationsFromBank(0, layer);

Expand Down
Loading

0 comments on commit f8f55aa

Please sign in to comment.