Skip to content

Commit

Permalink
Merge pull request #36 from DasLab/fix_bp_list_to_db
Browse files Browse the repository at this point in the history
fixed _group_into_non_conflicting_bp
  • Loading branch information
rkretsch committed Mar 6, 2024
2 parents 75a6f2d + e30a65c commit 5241e30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/arnie/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,9 +771,9 @@ def _group_into_non_conflicting_bp(bp_list):
to_remove.append(bpB)
group = [bp for bp in max_group if bp not in to_remove]
groups.append(group)
non_redudant_bp_list = current_bp_conflicts
conflict_list = [conflict for conflict in conflict_list if conflict[0]
not in group and conflict[1] not in group]
# remove group from list
non_redudant_bp_list = [bp for bp in non_redudant_bp_list if bp not in group] # current_bp_conflicts
# conflict_list = [conflict for conflict in conflict_list if conflict[0] not in group and conflict[1] not in group]
return groups


Expand Down

0 comments on commit 5241e30

Please sign in to comment.