Fix update to exclude bits with RBLs

This commit is contained in:
mrg 2020-09-09 13:03:05 -07:00
parent 138cbfac15
commit 3062aba214
1 changed files with 1 additions and 1 deletions

View File

@ -501,7 +501,7 @@ class replica_bitcell_array(bitcell_base_array.bitcell_base_array):
def graph_exclude_replica_col_bits(self):
"""Exclude all replica/dummy cells in the replica columns except the replica bit."""
for port in range(self.left_rbl + self.right_rbl):
for port in self.left_rbl + self.right_rbl:
self.replica_columns[port].exclude_all_but_replica()
def get_cell_name(self, inst_name, row, col):