We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4a1de commit 8036f74Copy full SHA for 8036f74
src/variants.cpp
@@ -97,7 +97,8 @@ bool DBG::DBGtoVariants(InSegment *inSegment) {
97
}
98
for (uint64_t c = 0; c<kcount; ++c){
99
100
- lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount), true);
+ if (explored % 1000 == 0)
101
+ lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount), true);
102
103
targetsMap.erase(targetsQueue.front()); // update targets
104
targetsQueue.pop_front();
0 commit comments