Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
release version 1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bqminh committed Aug 26, 2015
1 parent 96871dc commit c1a86ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ add_definitions(-DIQ_TREE)
# The version number.
set (iqtree_VERSION_MAJOR 1)
set (iqtree_VERSION_MINOR 3)
set (iqtree_VERSION_PATCH 7)
set (iqtree_VERSION_PATCH 8)

set(BUILD_SHARED_LIBS OFF)

Expand Down
4 changes: 2 additions & 2 deletions model/modelgtr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@ void ModelGTR::setBounds(double *lower_bound, double *upper_bound, bool *bound_c

if (freq_type == FREQ_ESTIMATE) {
for (i = ndim-num_states+2; i <= ndim; i++) {
// lower_bound[i] = MIN_FREQUENCY/state_freq[highest_freq_state];
lower_bound[i] = MIN_FREQUENCY/state_freq[highest_freq_state];
// upper_bound[i] = state_freq[highest_freq_state]/MIN_FREQUENCY;
lower_bound[i] = MIN_FREQUENCY;
// lower_bound[i] = MIN_FREQUENCY;
upper_bound[i] = 100.0;
bound_check[i] = false;
}
Expand Down

0 comments on commit c1a86ae

Please sign in to comment.