diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-01-29 14:55:10 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-02 07:34:56 -0800 |
commit | 9fe546f279cd643a308322ffa6af622630892315 (patch) | |
tree | 8a9d7ad300ecf376f4b75b3cc7d6e237b47e6813 /generic/arch.h | |
parent | 11c80c048b31261da14c04f79566b9e1debb29f9 (diff) | |
download | nextpnr-9fe546f279cd643a308322ffa6af622630892315.tar.gz nextpnr-9fe546f279cd643a308322ffa6af622630892315.tar.bz2 nextpnr-9fe546f279cd643a308322ffa6af622630892315.zip |
Rename Partition -> BelBucket.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'generic/arch.h')
-rw-r--r-- | generic/arch.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/generic/arch.h b/generic/arch.h index 85c98814..924115a7 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -281,30 +281,30 @@ struct Arch : BaseCtx return cell_types; } - std::vector<PartitionId> getPartitions() const { + std::vector<BelBucketId> getBelBuckets() const { return getCellTypes(); } - IdString getPartitionName(PartitionId partition) const { - return partition; + IdString getBelBucketName(BelBucketId bucket) const { + return bucket; } - PartitionId getPartitionByName(IdString partition) const { - return partition; + BelBucketId getBelBucketByName(IdString bucket) const { + return bucket; } - PartitionId getPartitionForBel(BelId bel) const { + BelBucketId getBelBucketForBel(BelId bel) const { return getBelType(bel); } - PartitionId getPartitionForCellType(IdString cell_type) const { + BelBucketId getBelBucketForCellType(IdString cell_type) const { return cell_type; } - std::vector<BelId> getBelsForPartition(PartitionId partition) const { + std::vector<BelId> getBelsInBucket(BelBucketId bucket) const { std::vector<BelId> bels; for(BelId bel : getBels()) { - if(partition == getPartitionForBel(bel)) { + if(bucket == getBelBucketForBel(bel)) { bels.push_back(bel); } } |