Skip to content

Commit

Permalink
add bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineStawitz-NOAA committed Sep 11, 2024
1 parent b65c42a commit bdd29ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inst/include/population_dynamics/population/population.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,10 +541,11 @@ struct Population : public fims_model_object::FIMSObject<Type> {
POPULATION_LOG << " age-length transition matrix" << std::endl;
for(size_t a = 0; a < this->nages; a++){
for(size_t l = 0; l < this->nlengths; l++){
this->fleets[fleet_]->age_length_transition_matrix[i_age_length] = this->growth->evaluate(ages[a]);
this->fleets[fleet_]->age_length_transition_matrix[i_age_length] = this->growth->alk(ages[a]);
}
}
}
}

/**
* @brief Calculates expected proportion of individuals mature at a selected
Expand Down

0 comments on commit bdd29ad

Please sign in to comment.