vreFinishRouting
vreFinishRouting( [d_cvid] [S_rStyle] [S_rName] ) =>l_result/ nil
Description
Runs finish routing based on the given routing style or router using the options specified in the Routing Assistant or set by vreSetOption.
Arguments
Value Returned
|
Disembodied property list representing statistics for the finished routing. |
|
Examples
The following example runs finish routing on the specified cellview using the specified router and routing style and the routing options specified in the Routing assistant are considered.
cv = geGetEditCellView()
vreFinishRouting(cv "device" "gbr")
The following example specifies options in batch mode for the device-level routing and runs finish routing.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'device 'gbr)
vreSetOptions(handle '(nil route_nets "All" route_netsWithin "PR boundary" route_deleteWires t route_deleteVias t))
vreFinishRouting(cv 'device 'gbr)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top