diff options
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index 28c144ac..29a85a10 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -219,8 +219,14 @@ struct CellInfo; struct Region { IdString name; + + bool constr_bels = false; + bool constr_wires = false; + bool constr_pips = false; + std::unordered_set<BelId> bels; std::unordered_set<WireId> wires; + std::unordered_set<Loc> piplocs; }; enum PlaceStrength |