vreDeletePowerRouting
vreDeletePowerRouting( [d_cvid] [S_rStyle] [S_rName] ) => t / nil
Description
Deletes power routing data for the specified scope 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 power routing when options have already been specified in the Routing assistant UI for the standard cell style routing.
cv = geGetEditCellView()
vreDeletePowerRouting(cv "stdCell" "nr")
The following example specifies three options in batch mode for the device-level routing, and then deletes power routing information.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'device 'gbr)
vreSetOptions(handle '(nil supply_nets "All" supply_netsWithin "PR boundary" supply_deleteStripes t supply_deleteVias t))
vreDeletePowerRouting(cv 'device 'gbr)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top