Add hierarchical seperator option to work with Xyce measurements.

This commit is contained in:
mrg
2021-05-14 16:16:25 -07:00
parent 7534610cdd
commit 3abebe4068
17 changed files with 274 additions and 229 deletions
+1 -1
View File
@@ -121,4 +121,4 @@ class bitcell_array(bitcell_base_array):
def get_cell_name(self, inst_name, row, col):
"""Gets the spice name of the target bitcell."""
return inst_name + '.x' + self.cell_inst[row, col].name, self.cell_inst[row, col]
return inst_name + "{}x".format(OPTS.hier_seperator) + self.cell_inst[row, col].name, self.cell_inst[row, col]