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