verifGetImpSets
verifGetImpSets(g_sessionId[ ?parentNamet_parentName] [ ?runnableg_runnable] [ ?isGroupg_isGroup] ) =>l_impSets/ nil
Description
Retrieves the list of all the implementation sets in a Verifier session.
Arguments
Value Returned
|
There is no implementation set in the Verifier session, or the command is not successful. |
Examples
The following example opens a Verifier cellview and retrieves all the implementation sets.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetImpSets(uid)
=> ("Weekly" "Weekly->Two_Stage_Opamp/OpAmp/maestro_MC/Active" "Weekly->PlanB" "Daily")
Retrieves the list of dependent implementation sets from a specified implementation or implementation set.
verifGetImpSets(sess ?parentName "Weekly")
=> ("Weekly->Two_Stage_Opamp/OpAmp/maestro_MC/Active" "Weekly->PlanB")
Retrieves the list of top-level implementation sets. Only a top-level implementation set is runnable.
verifGetImpSets(sess ?runnable t) nil)
=> ("Weekly" "Daily")
Retrieves the list of implementation set that include a group.
verifGetImpSets(sess ?isGroup t)
=> ("Weekly" "Weekly->PlanB" "Daily")
Retrieves the list of implementation sets that include an implementation.
verifGetImpSets(sess ?isGroup nil)
=> ("Weekly->Two_Stage_Opamp/OpAmp/maestro_MC/Active")
Related Topics
Simulation and Results Extraction Functions
Return to top