Skip to content

Commit

Permalink
Disabled BEAGLE version checking temporarily (this is for the paper a…
Browse files Browse the repository at this point in the history
…nalyses and I will obviously roll it back later)
  • Loading branch information
mdhall272 committed Oct 9, 2024
1 parent 305b095 commit a9061b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/dr/app/beast/BeastMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -901,11 +901,11 @@ public void uncaughtException(Thread t, Throwable e) {
BeagleInfo.printVersionInformation();

int[] versionNumbers = BeagleInfo.getVersionNumbers();
if (versionNumbers.length != 0 && versionNumbers[0] < 4) {
System.err.println("BEAST v" + BeastVersion.INSTANCE.getVersion() + " requires BEAGLE v4.0 or later.\n" +
"Please install or upgrade to the latest BEAGLE from https://beagle-dev.github.io/");
throw new RuntimeException("Terminate");
}
// if (versionNumbers.length != 0 && versionNumbers[0] < 4) {
// System.err.println("BEAST v" + BeastVersion.INSTANCE.getVersion() + " requires BEAGLE v4.0 or later.\n" +
// "Please install or upgrade to the latest BEAGLE from https://beagle-dev.github.io/");
// throw new RuntimeException("Terminate");
// }

if (beagleShowInfo) {
BeagleInfo.printResourceList();
Expand Down

0 comments on commit a9061b4

Please sign in to comment.