axlGetReuseNetlistOption
axlGetReuseNetlistOption(
x_hsdb
)
=> t / nil
Description
Checks if the option to use reference netlist is enabled for the setup database. This option helps in reusing the netlist of the reference history for the incremental simulation run.
Arguments
Value Returned
|
Specifies that the option to use reference netlist is enabled. |
||
|
Specifies that the option to use reference netlist is not enabled and a new netlist needs to be created. |
||
Examples
Indicates that the option to use reference netlist is enabled.
data_session = ( axlCreateSession "data_session" )
axlGetReuseNetlistOption(axlGetMainSetupDB(data_session))
=> t
Return to top