axlGetRunDistributeOptions
axlGetRunDistributeOptions(
x_hsdb
)
=> r_runOptions / nil
Description
Returns the current run option settings for the given setup database.
Argument
|
x_hsdb
|
Handle to the setup database.
|
Value Returned
|
r_runOptions
|
Struct of run options specified for the given setup database. A struct must contain the following elements:
-
RunIn: Describes how multiple simulations need to run. Valid values are Parallel or Serial. -
DivideJobs: Describes how the ICRPs can be divided among the simulation runs. Valid values are Specify or Equally. -
JobLimit: Describes the maximum number of jobs that can run when DivideJobs is set to Specify.
|
|
nil
|
The command could not be run.
|
Examples
The following example returns the run option settings for the sdb setup database.
sdb = axlGetMainSetupDB(axlGetWindowSession())
runOpt = axlGetRunDistributeOptions(sdb)
runOpt~>??
=> (JobLimit 4 DivideJobs Specify RunIn Parallel
)
Related Topics
Specifying a Distribution Method
Return to top