Skip to content

Commit

Permalink
Update variants.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gf777 committed Jul 10, 2024
1 parent 5117cf2 commit 1346c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/variants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ bool DBG::DBGtoVariants(InSegment *inSegment) {
mapRange = {0,0};
std::deque<uint64_t> targetsQueue;
phmap::parallel_flat_hash_map<uint64_t,bool> targetsMap;

lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount));

while (mapRange[1] < mapCount) {

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

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

lg.verbose("Candidate paths remaing/total: " + std::to_string(kcount-explored) + "/" + std::to_string(kcount), true);

targetsMap.erase(targetsQueue.front()); // update targets
targetsQueue.pop_front();
if (c+k+userInput.maxSpan < kcount) {
Expand Down

0 comments on commit 1346c68

Please sign in to comment.