asiFormatModelLibSelectionList
asiFormatModelLibSelectionList(o_sessionp_fp) =>t/nil
Description
Formats the statement which specifies the model library information.
Arguments
Value Returned
Examples
The generic method for asiAnalog class does nothing. The simulator interface has to define its own method, as shown in the following example:
defmethod(asiFormatAnalysisList ((session xyz_session) fp)
foreach( obj asiGetModelLibSelectionList( session )
artFprintf( fp “include %L” asiGetModelLibFile(obj))
unless( artBlankString(section)
artFprintf( fp “ section=%s” asiGetModelLibSection(obj))
)
artFprintf( fp “\n”)
) ; foreach
t )
Return to top