Skip to content

Commit

Permalink
oops fixed really stupid bug I just introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
halasadi committed Feb 11, 2018
1 parent 9be8520 commit cf898e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/eems2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void EEMS2::initialize_state(const MCMC &mcmc) {


nowmrateS = params.max_omegam;
nowqrateS = params.min_omegaq;
nowqrateS = params.max_omegaq;

int niters = mcmc.num_iters_to_save();
mRates = MatrixXd::Zero(niters, d);
Expand Down
2 changes: 1 addition & 1 deletion src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Params::Params(const string &params_file, const long seed_from_command_line) {

min_omegaq = -4;
min_omegam = -4;
max_omegaq = log10(0);
max_omegaq = log10(1);
max_omegam = log10(1.5);
}
ostream& operator<<(ostream& out, const Params& params) {
Expand Down

0 comments on commit cf898e0

Please sign in to comment.