relxGetSpecifiedReliabilityStateFileName
relxGetSpecifiedReliabilityStateFileName(t_sessionName) =>t_filename/ nil
Description
Returns the name of the state file used the Reliability form. By default, the name of the state file is relxOptions. However, you can rewrite this function to define another name for the state file for your simulator.
Arguments
|
Name of the Spectre session. You can also use the |
Value Returned
|
If the session is created using Spectre, returns the name of the state file. |
|
|
For any other sessions, returns |
Examples
Consider the below example in which you define the name of the state file for your simulator. The asiGetSpecifiedReliabilityStateFileName function returns the specified name of the state file.
(defmethod asiGetSpecifiedReliabilityStateFileName((session asiAnalogAdapter_session))
"LynxOptions"
)
session = asiGetCurrentSession()
asiGetSpecifiedReliabilityStateFileName(session)
=> LynxOptions
Return to top