Skip to content

Commit

Permalink
BREAKING CHANGE? get correct tree height when tree does not start at …
Browse files Browse the repository at this point in the history
…time 0
  • Loading branch information
msuchard committed Nov 30, 2023
1 parent c66bbea commit 70b8d2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dr/evomodel/coalescent/GMRFSkygridLikelihood.java
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ protected void setupSufficientStatistics() {
}
currentGridIndex = minGridIndex;

lastCoalescentTime = currentTime + intervalsList.get(i).getTotalDuration();
lastCoalescentTime = // currentTime +
intervalsList.get(i).getTotalDuration();

// theLastTime = lastCoalescentTime;

Expand Down

0 comments on commit 70b8d2e

Please sign in to comment.