vreRunGeneration
vreRunGeneration( [d_cvid] [S_style] [S_eName] ) => t / nil
Description
Generates selected object types from source. It uses the options specified in the Auto P&R assistant or set by vreSetOption.
Arguments
Value Returned
Examples
The following example generates objects in the Auto P&R GUI for stdCell style.
cv = geGetEditCellView()
vreRunGeneration(cv 'stdCell 'gp)
The following example generates objects in batch mode for stdCell style.
cv = geGetEditCellView()
handle = vreGetHandle(cv 'stdCell 'gp)
vreSetOption(handle 'init_generateObjects t)
vreSetOption(handle 'init_generateInstances t)
vreSetOption(handle 'init_generateBoundary t)
vreRunGeneration(cv 'stdCell 'gp)
Related Topics
Virtuoso Automated Placement and Routing SKILL Functions
Return to top