Skip to content

Commit

Permalink
Commit updates for v1.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rambaut committed Nov 14, 2018
1 parent 8758e6a commit d66c952
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@
<!--
<property name="version" value="1.9"/>
-->
<property name="version" value="1.10.4pre"/>
<property name="version" value="1.10.4"/>
<property name="jvm_version" value="1.7+"/>

<property name="version_number" value="1.10.3"/>
<property name="version_number" value="1.10.4"/>
<property name="copyright" value="Copyright 2002-2018"/>

<property name="release_dir" value="release"/>
Expand Down
4 changes: 2 additions & 2 deletions release/common/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BEAST v1.10.3 2002-2018
BEAST v1.10.4 2002-2018
Bayesian Evolutionary Analysis Sampling Trees
by
Alexei J. Drummond, Andrew Rambaut & Marc Suchard
Expand All @@ -16,7 +16,7 @@
[email protected]


Last updated: [email protected] - 28th October 2018
Last updated: [email protected] - 9th November 2018

Contents:
1) INTRODUCTION
Expand Down
15 changes: 13 additions & 2 deletions release/common/VERSION HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BEAST v1.10.3 2002-2018
BEAST v1.10.4 2002-2018
Bayesian Evolutionary Analysis Sampling Trees
by
Alexei J. Drummond, Andrew Rambaut & Marc A. Suchard
Expand All @@ -17,11 +17,22 @@


Version History
Last updated: [email protected] - 28th October 2018
Last updated: [email protected] - 9th November 2018
All issues can be viewed at https://github.com/beast-dev/beast-mcmc/issues

================================================================================

Version 1.10.4 released 9th November 2018

New Features:
Command-line option to turn off operator adaptation.
Command-line option to limit BEAGLE 3 thread usage.

Bug Fixes:
Issue 1038: Issue specifying burnin in the command-line LogCombiner.

================================================================================

Version 1.10.3 released 28th October 2018

Bug Fixes:
Expand Down
10 changes: 5 additions & 5 deletions src/dr/inferencexml/MCMCParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ private MCMC parseMCMC(String id, XMLObject xo) throws XMLParseException {
}
long adaptationDelay = chainLength / 100;
adaptationDelay =
xo.getAttribute(AUTO_OPTIMIZE_DELAY,
xo.getAttribute(ADAPTATION_DELAY,
xo.getAttribute(PRE_BURNIN, adaptationDelay)));
xo.getAttribute(AUTO_OPTIMIZE_DELAY,
xo.getAttribute(PRE_BURNIN, adaptationDelay)));

double adaptationTarget = 0.234;
if (System.getProperty("mcmc.adaptation_target") != null) {
Expand Down Expand Up @@ -162,9 +162,9 @@ private MCMC parseMCMC(String id, XMLObject xo) throws XMLParseException {
loggers.toArray(loggerArray);

java.util.logging.Logger.getLogger("dr.inference").info("\nCreating the MCMC chain:" +
"\n chainLength=" + options.getChainLength() +
"\n autoOptimize=" + options.useAdaptation() +
(options.useAdaptation() ? "\n autoOptimize delayed for " + options.getAdaptationDelay() + " steps" : "") +
"\n chain length = " + options.getChainLength() +
"\n operator adaption = " + options.useAdaptation() +
(options.useAdaptation() ? "\n adaptation delayed for " + options.getAdaptationDelay() + " steps" : "") +
(options.getFullEvaluationCount() == 0 ? "\n full evaluation test off" : "")
);

Expand Down

0 comments on commit d66c952

Please sign in to comment.