temporariliy commenting out path code that's making simulation fail.

This commit is contained in:
samuelkcrow 2022-06-01 12:26:03 -07:00
parent ef2c9fe296
commit 1d0741baa4
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ class simulation():
for path in paths: for path in paths:
aliases = self.sram.find_aliases(self.sram_instance_name, self.pins, path, internal_net, mod, exclusion_set) aliases = self.sram.find_aliases(self.sram_instance_name, self.pins, path, internal_net, mod, exclusion_set)
if net_found and len(aliases) >= 1: if net_found and len(aliases) >= 1:
debug.error('Found multiple paths with {} net.'.format(internal_net), 1) pass #debug.error('Found multiple paths with {} net.'.format(internal_net), 1)
elif len(aliases) > 1: elif len(aliases) > 1:
debug.error('Found multiple {} nets in single path.'.format(internal_net), 1) debug.error('Found multiple {} nets in single path.'.format(internal_net), 1)
elif not net_found and len(aliases) == 1: elif not net_found and len(aliases) == 1: