Skip to content

Commit

Permalink
Merge pull request #616 from etmc/reweighting
Browse files Browse the repository at this point in the history
fix printing typo
  • Loading branch information
kostrzewa authored Feb 12, 2025
2 parents 383cfb4 + c370e6e commit 3467944
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 3467944

Please sign in to comment.