Home
last modified time | relevance | path

Searched refs:BIC_score (Results 1 – 3 of 3) sorted by relevance

/dports/biology/iqtree/IQ-TREE-2.0.6/main/
H A Dphylotesting.h41 BIC_score = DBL_MAX;
165 double AIC_score, AICc_score, BIC_score; // scores variable
H A Dphylotesting.cpp225 computeInformationScores(logl, df, sample_size, AIC_score, AICc_score, BIC_score); in computeICScores()
238 computeInformationScores(logl, df, sample_size, AIC_score, AICc_score, BIC_score); in computeICScores()
252 return BIC_score; in getScore()
323 sum_BIC += info.BIC_weight = exp(-0.5*(info.BIC_score-best_score_BIC)); in getOrderedModels()
2584 at(model).BIC_score > prev_info.BIC_score) { in test()
2602 if (at(model).BIC_score > prev_info.BIC_score) { in test()
2633 if (at(model).BIC_score < best_score_BIC) { in test()
2635 best_score_BIC = at(model).BIC_score; in test()
2648 default: model_scores.push_back(at(model).BIC_score); break; in test()
2672 cout << at(model).AICc_score << " " << at(model).BIC_score; in test()
[all …]
H A Dphyloanalysis.cpp249 out << it->BIC_score << ((it->BIC_conf) ? " + " : " - "); in reportModelSelection()
528 double AIC_score, AICc_score, BIC_score; in reportTree() local
529 computeInformationScores(tree_lh, df, ssize, AIC_score, AICc_score, BIC_score); in reportTree()
548 out << "Bayesian information criterion (BIC) score: " << BIC_score << endl; in reportTree()