vreRemoveJogs
vreRemoveJogs( [d_cvid] [S_rStyle] [S_rName] ) => t/ nil
Description
Removes jogs from the given cellview when the specified router is run on it. This API uses the options specified in the Routing Assistant or set through vreSetOption based on the given routing style or router.
Arguments
Value Returned
Examples
The following example will remove jogs for standard cell routing style.
cv = geGetEditCellView()
vreRemoveJogs(cv "device" "gbr")
The following example will remove jogs in batch mode for device level routing style.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'device 'gbr)
vreSetOptions(handle '(nil route_nets "All" route_netsWithin "PR boundary" route_routedLoc "Current cellview"))
vreRemoveJogs(cv 'device 'gbr)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top