Skip to content

Commit 1346c68

Browse files
committed
Update variants.cpp
1 parent 5117cf2 commit 1346c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/variants.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ bool DBG::DBGtoVariants(InSegment *inSegment) {
7777
mapRange = {0,0};
7878
std::deque<uint64_t> targetsQueue;
7979
phmap::parallel_flat_hash_map<uint64_t,bool> targetsMap;
80-
81-
lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount));
8280

8381
while (mapRange[1] < mapCount) {
8482

@@ -100,6 +98,8 @@ bool DBG::DBGtoVariants(InSegment *inSegment) {
10098

10199
for (uint64_t c = 0; c<kcount; ++c){
102100

101+
lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount), true);
102+
103103
targetsMap.erase(targetsQueue.front()); // update targets
104104
targetsQueue.pop_front();
105105
if (c+k+userInput.maxSpan < kcount) {

0 commit comments

Comments
 (0)