Skip to content

Commit

Permalink
fix to pass test
Browse files Browse the repository at this point in the history
  • Loading branch information
mnovo323 committed Aug 26, 2022
1 parent c5f21aa commit 63272fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ST_mortality.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,8 +1256,8 @@ double _getWildfireProbability(void) {
// these next four lines need to be updated appropriately
const int numAfg = 3;
const int numPfg = 4;
char *afgRGroupNames[numAfg] = {"a.cool.forb", "a.warm.forb", "a.cool.grass"};
char *pfgRGroupNames[numPfg] = {"p.cool.forb", "p.warm.forb", "p.cool.grass", "p.warm.grass"};
const char *afgRGroupNames[] = {"a.cool.forb", "a.warm.forb", "a.cool.grass"};
const char *pfgRGroupNames[] = {"p.cool.forb", "p.warm.forb", "p.cool.grass", "p.warm.grass"};

double afgAGB; // annual forbs and grasses biomass
double pfgAGB; // perennial forbs and grasses biomass
Expand Down

0 comments on commit 63272fb

Please sign in to comment.