delete_sta_collection (::quartus::sta)

The following table displays information for the delete_sta_collection Tcl command:

Tcl Package and Version

Belongs to ::quartus::sta 1.0

Syntax delete_sta_collection [-h | -help] [-long_help]
 
<collection>
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
<collection> The collection to delete
Description
Deletes a collection from memory.

Collections can be obtained by Tcl commands such as get_clocks,
get_ports, get_cells. This command allows for the deletion of
such collections from memory manually.

Note that this is automatically performed by delete_timing_netlist.
Example Usage
project_open chiptrip
create_timing_netlist

set nodes [get_nodes Reg*]

# ...
# do some work with the $nodes collection
# ...

# Delete the collection.
delete_sta_collection $nodes

# ...
# do more work
# ...

delete_timing_netlist
project_close
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful
TCL_ERROR 1 ERROR: Cannot find specified collection. Specify an existing collection.