Skip to content

Commit

Permalink
Fix in AbstractUpdater
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoguindani committed Jul 11, 2022
1 parent 26f00c3 commit 1f82487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hierarchies/updaters/abstract_updater.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AbstractUpdater {
} else {
if (!saved_posterior_hypers && save) {
posterior_hypers = compute_posterior_hypers(like, prior);
} else if (!save) {
} else if (!saved_posterior_hypers && !save) {
return compute_posterior_hypers(like, prior);
}
return posterior_hypers;
Expand Down

0 comments on commit 1f82487

Please sign in to comment.