Skip to content

Commit

Permalink
Fixes column alignment and extra Y column in multiPop
Browse files Browse the repository at this point in the history
  • Loading branch information
argiopetech committed Mar 11, 2015
1 parent 038c7b9 commit 6d8f95c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion multiPopMcmc/MpiMcmcApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ MpiMcmcApplication::MpiMcmcApplication(Settings &s)

clust.clustA.yyy = settings.cluster.starting.Y;
clust.clustA.priorMean[YYY] = settings.cluster.priorMeans.Y;
ctrl.priorVar[YYY] = settings.cluster.priorSigma.Y;
ctrl.priorVar[YYY] = 0;

// No IFMR code

Expand Down
2 changes: 1 addition & 1 deletion multiPopMcmc/mpiFuncs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ void printHeader (ofstream &file, array<double, NPARAMS> const &priors)
}
}
file << paramNames.at(YYA) << paramNames.at(YYB) << paramNames.at(LAMBDA);
file << " logPost" << endl;
file << " logPost" << endl;
}
2 changes: 1 addition & 1 deletion singlePopMcmc/mpiFuncs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ void printHeader (ofstream &file, array<double, NPARAMS> const &priors)
file << paramNames.at(p);
}
}
file << " logPost" << endl;
file << " logPost" << endl;
}

0 comments on commit 6d8f95c

Please sign in to comment.