Skip to content

Commit d66c952

Browse files
committed
Commit updates for v1.10.4
1 parent 8758e6a commit d66c952

4 files changed

Lines changed: 22 additions & 11 deletions

File tree

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,10 @@
321321
<!--
322322
<property name="version" value="1.9"/>
323323
-->
324-
<property name="version" value="1.10.4pre"/>
324+
<property name="version" value="1.10.4"/>
325325
<property name="jvm_version" value="1.7+"/>
326326

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

330330
<property name="release_dir" value="release"/>

release/common/README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BEAST v1.10.3 2002-2018
1+
BEAST v1.10.4 2002-2018
22
Bayesian Evolutionary Analysis Sampling Trees
33
by
44
Alexei J. Drummond, Andrew Rambaut & Marc Suchard
@@ -16,7 +16,7 @@
1616
msuchard@ucla.edu
1717

1818

19-
Last updated: a.rambaut@ed.ac.uk - 28th October 2018
19+
Last updated: a.rambaut@ed.ac.uk - 9th November 2018
2020

2121
Contents:
2222
1) INTRODUCTION

release/common/VERSION HISTORY.txt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BEAST v1.10.3 2002-2018
1+
BEAST v1.10.4 2002-2018
22
Bayesian Evolutionary Analysis Sampling Trees
33
by
44
Alexei J. Drummond, Andrew Rambaut & Marc A. Suchard
@@ -17,11 +17,22 @@
1717

1818

1919
Version History
20-
Last updated: a.rambaut@ed.ac.uk - 28th October 2018
20+
Last updated: a.rambaut@ed.ac.uk - 9th November 2018
2121
All issues can be viewed at https://github.com/beast-dev/beast-mcmc/issues
2222

2323
================================================================================
2424

25+
Version 1.10.4 released 9th November 2018
26+
27+
New Features:
28+
Command-line option to turn off operator adaptation.
29+
Command-line option to limit BEAGLE 3 thread usage.
30+
31+
Bug Fixes:
32+
Issue 1038: Issue specifying burnin in the command-line LogCombiner.
33+
34+
================================================================================
35+
2536
Version 1.10.3 released 28th October 2018
2637

2738
Bug Fixes:

src/dr/inferencexml/MCMCParser.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ private MCMC parseMCMC(String id, XMLObject xo) throws XMLParseException {
8181
}
8282
long adaptationDelay = chainLength / 100;
8383
adaptationDelay =
84-
xo.getAttribute(AUTO_OPTIMIZE_DELAY,
8584
xo.getAttribute(ADAPTATION_DELAY,
86-
xo.getAttribute(PRE_BURNIN, adaptationDelay)));
85+
xo.getAttribute(AUTO_OPTIMIZE_DELAY,
86+
xo.getAttribute(PRE_BURNIN, adaptationDelay)));
8787

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

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

0 commit comments

Comments
 (0)