Added a graph exclusion clear for the mux to prevent previous graph creations causing bugs.

This commit is contained in:
Hunter Nichols
2021-06-14 14:39:54 -07:00
parent 7df36a916b
commit 74b55ea83b
6 changed files with 21 additions and 8 deletions
-4
View File
@@ -236,10 +236,6 @@ class column_mux_array(design.design):
Excludes all columns muxes unrelated to the target bit being simulated.
Each mux in mux_inst corresponds to respective column in bitcell array.
"""
#stop = 34
for i in range(len(self.mux_inst)):
if i != column_include_num:
self.graph_inst_exclude.add(self.mux_inst[i])
debug.info(0, "Excluded mux {}".format(i))
#if i == stop:
# break