Skip to content

Commit ae04fad

Browse files
committed
change to version v3.0.0
1 parent cda8b22 commit ae04fad

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTDH)
114114
find_package(Backtrace)
115115

116116
# The version number.
117-
set (iqtree_VERSION_MAJOR 2)
118-
set (iqtree_VERSION_MINOR 4)
117+
set (iqtree_VERSION_MAJOR 3)
118+
set (iqtree_VERSION_MINOR 0)
119119
set (iqtree_VERSION_PATCH ".0")
120120

121121
option(BUILD_SHARED_LIBS "Build Shared Libraries" OFF)

tree/iqtree.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,8 @@ void IQTree::computeInitialTree(LikelihoodKernel kernel, istream* in) {
696696

697697
stringstream treeStr;
698698
this->sortTaxa();
699-
this->printTree(treeStr, NULL);
699+
//this->printTree(treeStr, NULL);
700+
this->printTree(treeStr, 0);
700701
outfile << this->aln->getNSeq() << ' ' << 1 << endl;
701702
outfile << treeStr.str() << endl;
702703
outfile.close();

0 commit comments

Comments
 (0)