vreRunChecker
vreRunChecker( [d_cvid] [S_rStyle] [S_rName] ) => t / nil
Description
Runs the pre-route checker 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 runs the pre-route checker when options have already been specified in the Routing Assistant UI for standard cell routing style.
cv = geGetEditCellView()
vreRunChecker(cv "stdCell" "nr")
The following example specifies options in batch mode for device-level routing style and then runs pre-route checker.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'device 'gbr)
vreSetOptions(handle '(nil check_existingDRCs nil check_displayLog t check_overwriteLog t check_generateMarkers nil))
vreRunChecker(cv 'device 'gbr)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top