verifGetImpsInImpSet
verifGetImpsInImpSet(g_sessionId t_impSetName) =>l_impSets/ nil
Description
Retrieves the list of implementations from the specified implementation set in a Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
The list of implementations from the specified implementation set in a Verifier session. |
|
|
The implementation set does not exist or there is no implementation in the specified set. |
Examples
The following example opens a Verifier cellview and retrieves the list of implementations from the specified implementation set in a Verifier session.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetImpSets(uid)
("Weekly" "Daily")
verifGetImpsInImpSet(uid "Weekly")
(("Two_Stage_Opamp" "OpAmp" "maestro_MC" "MonteCarlo.3.RO")
("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Interactive.0")
)
verifGetImpsInImpSet(uid "Daily")
=> nil
Related Topics
Simulation and Results Extraction Functions
Return to top