vreDeleteSignalRouting
vreDeleteSignalRouting( [d_cvid] [S_rStyle] [S_rName] ) => t / nil
Description
Deletes signal routing data for specified scope based of the given routing style or router using the options specified in the Routing Assistant or set by vreSetOption.
Arguments
Value Returned
Examples
The following example deletes signal routing when options have already been specified in the Routing assistant UI for the standard cell style routing.
cv = geGetEditCellView()
vreDeleteSignalRouting(cv "stdCell" "nr")
The following example specifies options in batch mode for the device-level routing, and then performs signal routing deletion.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'device 'gbr)
vreSetOptions(handle '(nil route_nets "All" route_netsWithin "PR boundary" route_routedLoc "Current Cellview"))
vreDeleteSignalRouting(cv 'device 'gbr)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top