Class SimulationParams
Parameters that control a simulation.
Inherited Members
Namespace: Quantellia.WMServer.Simulation
Assembly: WMServer.dll
Syntax
public class SimulationParams
Properties
Constraint
A javascript code block that calculates whether the conditions of a simulation violates constraints, and invalidates the simulation run.
Declaration
public string Constraint { get; set; }
Property Value
Type | Description |
---|---|
string |
Goal
TODO A javascript code block that manages simulation goals.
Declaration
public string Goal { get; set; }
Property Value
Type | Description |
---|---|
string |
InputParams
A javascript code block that calculates the input arguments for the next iteration of a simulation. Must return a javascript object, with each property and value corresponding to an arguments. Arguments not returned will return to default values.
Declaration
public string InputParams { get; set; }
Property Value
Type | Description |
---|---|
string |
StopCondition
A javascript code block that calculates whether the conditions of a simulation should stop further simulations. Must return a boolean value, with true resulting in further simulations ceasing.
Declaration
public string StopCondition { get; set; }
Property Value
Type | Description |
---|---|
string |