fix height calculation bug for replica array

This commit is contained in:
samuelkcrow 2023-01-26 17:38:24 -08:00
parent cc408447b1
commit 2f795f8068
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ class replica_bitcell_array(bitcell_base_array):
self.route_supplies()
self.height = (len(self.rbl) + self.row_size) * self.cell.height
self.height = (sum(self.rbl) + self.row_size) * self.cell.height
self.width = (len(self.rbls) + self.column_size) * self.cell.width
self.add_boundary()