Skip to content

Commit

Permalink
Latent logging wrong date
Browse files Browse the repository at this point in the history
  • Loading branch information
brj1 committed Feb 17, 2023
1 parent 20d4587 commit d700887
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added dist/BBD.addon.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/bbd/distributions/LatencyPrior.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void log(final long sample, final PrintStream out) {
out.print(getCurrentLogP() + "\t");
int k = 0;
for (final int i : taxonIndex) {
out.print(oriDate[k++] - tree.getNode(i).getDate() + "\t");
out.print(tree.getNode(i).getDate() + "\t");
}
}

Expand Down

0 comments on commit d700887

Please sign in to comment.