You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!lastIR.isDummy() && lastIR >= reader.getInteractionRecord()) {
51
+
constint MaxErrLog = 2;
52
+
staticint errLocCount = 0;
53
+
if (errLocCount++ < MaxErrLog) {
54
+
LOGP(warn, "Impossible ROF IR {}, does not exceed previous {}, discarding in clusterization", reader.getInteractionRecord().asString(), lastIR.asString());
LOGP(warn, "Impossible ROF IR {}, previous was {}, TF 1st IR was {}, discarding in decoding", mDecoder->getInteractionRecord().asString(), lastIR.asString(), firstIR.asString());
165
+
}
166
+
continue;
167
+
}
168
+
lastIR = mDecoder->getInteractionRecord();
159
169
if (mDoDigits || mClusterer->getMaxROFDepthToSquash()) { // call before clusterization, since the latter will hide the digits
160
170
mDecoder->fillDecodedDigits(digVec, digROFVec); // lot of copying involved
0 commit comments