maeGetSimOption
maeGetSimOption(t_testName[?optiont_optionName] [?includeEmptyg_includeEmpty] [?sessiont_sessionName] ) =>l_options/ nil
Description
Returns a list containing name-value pairs for the simulator options for the given test. By default, it returns all the simulator options whose value is not nil. If the includeEmpty argument is set to t, it returns all the simulator options. If a specific option is specified, the function returns the value of only that option.
Arguments
Value Returned
Examples
Returns the values of all the options for test solutions:ampTest:
maeGetSimOption("solutions:ampTest:2" ?includeEmpty t)
=> (label1: "" reltol: "1e-3" residualtol: "" vabstol: "1e-6" iabstol: "1e-12" )
Return to top