slaRemoveSimulationSetup
slaRemoveSimulationSetup(
t_setupName
)
=> t / nil
Description
Removes a simulation setup from the setup library view that is opened using the slaOpenOrCreateView function.
Using this function also clears the simulation setup fields for the corresponding verification space. If the verification space contains only a simulation setup field, the verification space is removed along with the simulation setup.
Arguments
Value Returned
|
The simulation setup with the specified name does not exist, or the command failed. |
Examples
Opens a setup library view and removes the specified simulation setup from the opened setup library view.
slaOpenOrCreateView("bertlink" "osc13" "setupLib")
=> t
slaRemoveSimulationSetup("SimpleMC_10Points")
=> t
Returns an error message if the specified simulation setup does not exist.
slaRemoveSimulationSetup("XXX")
ERROR (ADE-11414): Cannot run the function because the simulation setup 'XXX' is invalid. Specify a valid simulation setup name and rerun the function.
=> nil
Related Topics
Setup Library Assistant Functions
Return to top