Increase column width in netgen LVS scripts

This commit is contained in:
mrg 2022-06-16 10:30:58 -07:00
parent 98fe4c74a4
commit dc9ae6cd1a
1 changed files with 5 additions and 0 deletions

View File

@ -267,6 +267,11 @@ def write_lvs_script(cell_name, gds_name, sp_name, final_verification=False, out
if os.path.exists(full_setup_file): if os.path.exists(full_setup_file):
# Copy setup.tcl file into temp dir # Copy setup.tcl file into temp dir
shutil.copy(full_setup_file, output_path) shutil.copy(full_setup_file, output_path)
setup_file_object = open(output_path + "/setup.tcl", 'a')
setup_file_object.write("# Increase the column sizes for ease of reading long names\n")
setup_file_object.write("::netgen::format 80\n")
else: else:
setup_file = 'nosetup' setup_file = 'nosetup'