Skip to content

Commit

Permalink
[thickset] fix bug in ThickBox is_not_subset
Browse files Browse the repository at this point in the history
  • Loading branch information
benEnsta committed Oct 18, 2020
1 parent 1eda63e commit 1c722e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyibex_thickset/lib/ThickBox_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ inline bool ThickBox::intersects(const IntervalVector& box) const {
}

inline bool ThickBox::is_not_subset(const IntervalVector& box) const {
bool res = true;
bool res = false;
for (int i = 0; i < box.size(); i++){
res |= itvs[i].is_not_subset(ThickInterval(box[i]));
}
Expand Down

0 comments on commit 1c722e0

Please sign in to comment.