Renamed graph_util to timing_graph to match the module name

This commit is contained in:
Hunter Nichols 2021-07-25 20:21:54 -07:00
parent 7fc4469b97
commit 5ad86538d4
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import math
import tech import tech
from globals import OPTS from globals import OPTS
from sram_factory import factory from sram_factory import factory
import graph_util import timing_graph
class simulation(): class simulation():
@ -541,7 +541,7 @@ class simulation():
self.sram.graph_exclude_column_mux(self.bitline_column, port) self.sram.graph_exclude_column_mux(self.bitline_column, port)
# Generate new graph every analysis as edges might change depending on test bit # Generate new graph every analysis as edges might change depending on test bit
self.graph = graph_util.timing_graph() self.graph = timing_graph.timing_graph()
self.sram_instance_name = "X{}".format(self.sram.name) self.sram_instance_name = "X{}".format(self.sram.name)
self.sram.build_graph(self.graph, self.sram_instance_name, self.pins) self.sram.build_graph(self.graph, self.sram_instance_name, self.pins)