We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bf6994 + 068f859 commit ddcba73Copy full SHA for ddcba73
genfit2/code2/fitters/src/DAF.cc
@@ -151,7 +151,7 @@ namespace genfit {
151
try {
152
converged = calcWeights(tr, rep, betas_.at(iBeta));
153
if (!converged && iBeta >= minIterForPval_ - 1 &&
154
- status->getBackwardPVal() > 1e-10 && lastPval > 1e-10 && fabs(lastPval - status->getBackwardPVal()) < this->deltaPval_) {
+ status->getBackwardPVal() != 0 && fabs(lastPval - status->getBackwardPVal()) < this->deltaPval_) {
155
if (debugLvl_ > 0) {
156
debugOut << "converged by Pval = " << status->getBackwardPVal() << " even though weights changed at iBeta = " << iBeta << std::endl;
157
}
0 commit comments