verifGetSetupLibrary
verifGetSetupLibrary(g_sessionId) =>library/cell/view/ nil
Description
Retrieves the name of the setup library cellview bound to the given Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
Value Returned
|
A string in the "library/cell/view" format which contains the setup library cellview bound to the Verifier session. |
|
Examples
The following example starts a Verifier session which is bound to a setup library cellview and returns the name of the setup library cellview.
uid = verifOpenCellView("Two_Stage_Opamp" "OpAmp" "verifier")
INFO (VERIFIER-8215): Started Verifier session '0'.
=> 0
Returns the setup library cellview name Two_Stage_Opamp/OpAmp/setupLib which is bound to the Verifier session 0.
verifGetSetupLibrary(sessionId)
=> "Two_Stage_Opamp/OpAmp/setupLib"
Opens a new verifier view without a setup library cellview bound to it.
sessionIdNew = verifOpenCellView("Two_Stage_Opamp" "OpAmp" "verifier_new")
INFO (VERIFIER-8215): Started Verifier session '1'.
=> 1
verifGetSetupLibrary(sessionIdNew)
nil
Related Topics
Setup Library Assistant Functions
Return to top