asiFormatSpecialParameterForRel
asiFormatSpecialParameterForRel(o_oasisSession p_fp) =>t
Description
Netlists the new options added to the customized tab.
You need to define this function in the .cdsinit file. You need not call it.
Arguments
Value Returned
Examples
Add the following SKILL code in the .cdsinit file to netlist the circuitReport and circuitReportPath options added to the Custom tab.
(defun asiFormatSpecialParameterForRel (session) when(relxGetReliabilityOptionVal(session 'circuitReport)
(artFprintf fp "parameters circuit_report=1\n")
(artFprintf fp "parameters path_report=%s\n" relxGetReliabilityOptionVal(session 'circuitReportPath))
)
)
Return to top