Skip to content

Commit

Permalink
fix printing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcogarofalo committed Jan 28, 2025
1 parent 320696f commit c370e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reweighting_factor.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void reweighting_factor(const int N, const int nstore) {
double y = mnl->accfunction(j, &hf);
data[i*no_monomials + j] = y;
if(g_proc_id == 0 && g_debug_level > 0) {
printf("# monomial[%d] %s, stochastic part: w_%d=%e exp(w_%d)=%e\n", j, mnl->name, j, j, y, exp(y));
printf("# monomial[%d] %s, stochastic part: w_%d=%e exp(w_%d)=%e\n", j, mnl->name, j, y, j, exp(y));
}
}
}
Expand Down

0 comments on commit c370e6e

Please sign in to comment.