verifGetImps
verifGetImps(g_sessionId[ ?libraryt_impLib] [ ?cellt_impCell] [ ?viewt_impView] [ ?historyt_impHistory] [ ?runStateg_runState] [ ?runPlanStateg_runPlanState] [ ?extRefg_extRef] [ ?priorityx_priority] [ ?estRunTimex_estRunTime] [ ?customg_custom] ) =>l_imps/ nil
Retrieves the list of the implementations from a Verifier session that have the same library, cell, view, or history name as specified, the same check state for the 'Run' or 'RunPlan' check box.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
There are no matched implementations or the command is not successful. |
Examples
The following example opens a Verifier cellview and retrieves the implementations.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetImps(uid)
(("Two_Stage_Opamp" "OpAmp" "maestro_MC" "Active")
("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
("Two_Stage_Opamp" "OpAmp" "maestro_run_plan" "Active")
("amsPLL" "CP_TB" "maestro" "Active")
)
Gets the implementations belonging to library amsPLL.
verifGetImps(uid ?library "amsPLL")
(("amsPLL" "CP_TB" "maestro" "Active"))
Gets the implementation with enabled 'Run' check box.
verifGetImps(uid ?runState t)
(("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
("amsPLL" "CP_TB" "maestro" "Active")
)
Gets the implementations that belong to cell OpAmp and have the RunPlan check box disabled.
verifGetImps(uid ?cell "OpAmp" ?runPlanState nil)
(("Two_Stage_Opamp" "OpAmp" "maestro_MC" "Active")
("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
)
Gets the referenced implementations.
verifGetImps(uid ?extRef t)
=> nil
Gets the implementations that have priority equal to 50:
verifGetImps(uid ?priority 50)
(("Two_Stage_Opamp" "OpAmp" "maestro_sweeps-corners" "Active"))
Get the implementations that have priority greater than 40.
verifGetImps(uid ?priority lambda((x) x>40))
(("Two_Stage_Opamp" "OpAmp" "maestro_sweeps-corners" "Active")
("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
)
Related Topics
Return to top