Skip to content

Commit

Permalink
update defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Zilong-Li committed Feb 12, 2024
1 parent f08e02e commit 9ff9718
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/admixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class Admixture
// randon engine
std::default_random_engine rng = std::default_random_engine{};
// BOUNDING
double clusterFreqThreshold{1e-6}; // threshold for F
double admixtureThreshold{1e-6}; // threshold for Q
double magicTol{1e-2}; // threshold for cluster frequency estimated from fastphase
double clusterFreqThreshold{1e-9}; // threshold for F
double admixtureThreshold{1e-9}; // threshold for Q
double magicTol{0.0}; // threshold for cluster frequency estimated from fastphase
bool debug = false;
bool nonewQ = false;
bool cF = false;
Expand Down

0 comments on commit 9ff9718

Please sign in to comment.