Skip to content

Commit

Permalink
Update nltepop.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
jpollin98 committed May 4, 2024
1 parent 8347608 commit 6ea08b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nltepop.cc
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,8 @@ void solve_nlte_pops_element(const int element, const int modelgridindex, const
// calculate the normalisation factors and apply them to the matrix
// columns and balance vector elements
gsl_vector *pop_norm_factor_vec = gsl_vector_calloc(nlte_dimension);
nltepop_matrix_normalise(modelgridindex, element, rate_matrix, pop_norm_factor_vec);
gsl_vector_set_all(pop_norm_factor_vec, 1.0);
// nltepop_matrix_normalise(modelgridindex, element, rate_matrix, pop_norm_factor_vec);

// printout("Rate matrix | balance vector:\n");
// for (int row = 0; row < nlte_dimension; row++)
Expand Down

0 comments on commit 6ea08b8

Please sign in to comment.