diff options
| author | gatecat <gatecat@ds0.me> | 2022-12-07 10:02:16 +0100 | 
|---|---|---|
| committer | gatecat <gatecat@ds0.me> | 2022-12-07 10:02:16 +0100 | 
| commit | d1afd6c0f1f8452d7461bbf33c84dbfd59236d03 (patch) | |
| tree | a50ad26c68e198f8342e84005ff819b73ed3abe7 | |
| parent | e260ac33abdd175f38ea5d8367c52a154b486648 (diff) | |
| download | nextpnr-d1afd6c0f1f8452d7461bbf33c84dbfd59236d03.tar.gz nextpnr-d1afd6c0f1f8452d7461bbf33c84dbfd59236d03.tar.bz2 nextpnr-d1afd6c0f1f8452d7461bbf33c84dbfd59236d03.zip | |
heap: Remove custom bounding-box type
Signed-off-by: gatecat <gatecat@ds0.me>
| -rw-r--r-- | common/place/placer_heap.cc | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/common/place/placer_heap.cc b/common/place/placer_heap.cc index bd8cd37d..8da4ee2e 100644 --- a/common/place/placer_heap.cc +++ b/common/place/placer_heap.cc @@ -377,12 +377,6 @@ class HeAPPlacer      TimingAnalyser tmg; -    struct BoundingBox -    { -        // Actual bounding box -        int x0 = 0, x1 = 0, y0 = 0, y1 = 0; -    }; -      dict<IdString, BoundingBox> constraint_region_bounds;      // In some cases, we can't use bindBel because we allow overlap in the earlier stages. So we use this custom | 
