Skip to content

Commit 8c6dc01

Browse files
committed
Took out a change that was previously made to the empty member function of the Region class. This change was causing the vpr unit test to fail, and so it will be moved to another pull request where the unit test will also be updated accordingly with the change. The change is not necessary on this pull request
1 parent 3a86fac commit 8c6dc01

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vpr/src/base/region.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ bool Region::locked() {
3535
}
3636

3737
bool Region::empty() {
38-
//return region_bounds.empty();
39-
return region_bounds.xmax() < region_bounds.xmin() || region_bounds.ymax() < region_bounds.ymin();
38+
return region_bounds.empty();
4039
}
4140

4241
bool Region::is_loc_in_reg(t_pl_loc loc) {

0 commit comments

Comments
 (0)