Product Documentation
Virtuoso ADE Verifier SKILL Reference
Product Version IC23.1, November 2023

verifGetImpSets

verifGetImpSets(
g_sessionId
[ ?parentName t_parentName ]
[ ?runnable g_runnable ]
[ ?isGroup g_isGroup ]
)
=> l_impSets / nil

Description

Retrieves the list of all the implementation sets in a Verifier session.

Arguments

g_sessionId

Integer, string number, or window specifying the Verifier session ID. For example, 0, "0", or window(2).

?parentName t_parentName

Name of the parent implementation set.

?runnable g_runnable

A check that when enabled, retrieves the implementation set that can be run from Verifier. Only the top-level implementation set is runnable.

?isGroup g_isGroup

A check that when enabled, retrieves the implementation set which is a group of implementations.

Value Returned

l_impSets

The list of implementation sets in the Verifier session.

nil

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

verifAddImpSet

verifAddImpToImpSet

verifGetImpsInImpSet

verifRemoveImpSet

verifRemoveImpFromImpSet

verifSetImpSetName

Simulation and Results Extraction Functions


Return to top
 ⠀
X