Skip to content

Commit dadf913

Browse files
committed
dont want this anymore
1 parent fe2280a commit dadf913

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/deconstructor.cpp

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -735,26 +735,6 @@ bool Deconstructor::deconstruct_site(const handle_t& snarl_start, const handle_t
735735
return false;
736736
}
737737

738-
if (ref_travs.size() > 1 && this->include_nested) {
739-
#ifdef debug
740-
#pragma omp critical (cerr)
741-
cerr << "Multiple ref traversals not yet supported with nested decomposition: removing all but first" << endl;
742-
#endif
743-
size_t min_start_pos = numeric_limits<size_t>::max();
744-
int64_t first_ref_trav;
745-
for (int64_t i = 0; i < ref_travs.size(); ++i) {
746-
auto& ref_trav_idx = ref_travs[i];
747-
step_handle_t start_step = trav_steps[ref_trav_idx].first;
748-
step_handle_t end_step = trav_steps[ref_trav_idx].second;
749-
size_t ref_trav_pos = min(graph->get_position_of_step(start_step), graph->get_position_of_step(end_step));
750-
if (ref_trav_pos < min_start_pos) {
751-
min_start_pos = ref_trav_pos;
752-
first_ref_trav = i;
753-
}
754-
}
755-
ref_travs = {ref_travs[first_ref_trav]};
756-
}
757-
758738
// XXX CHECKME this assumes there is only one reference path here, and that multiple traversals are due to cycles
759739

760740
// we collect windows around the reference traversals

0 commit comments

Comments
 (0)