verifRemoveImp
verifRemoveImp(
g_sessionId
t_impLib
t_impCell
t_impView
t_impHistory
)
=> t / nil
Deletes an implementation from the specified Verifier session.
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
The specified implementation is deleted from the Verifier session. |
|
|
The specified implementation does not exist in the Verifier session for deletion, or the command is not successful. |
Examples
The following example opens a Verifier cellview that has an implementation Two_Stage_Opamp/OpAmp/maestro_nominal/Active. This implementation is then deleted from the Verifier session.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetImps(uid)
(("Two_Stage_Opamp" "OpAmp" "maestro_MC" "MonteCarlo.3.RO")
("Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
("Two_Stage_Opamp" "OpAmp" "maestro_run_plan" "Active")
("amsPLL" "CP_TB" "maestro" "Active")
)
Deletes the specified implementation.
verifRemoveImp(uid "Two_Stage_Opamp" "OpAmp" "maestro_nominal" "Active")
=> t
Related Topics
Return to top