Show / Hide Table of Contents

Class SimulationParams

Parameters that control a simulation.

Inheritance
object
SimulationParams
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
In this article
Back to top Copyright © 2025 Quantellia LLC.    Version 2.0.0 Revision 399     Last Updated 1/15/2025    DRAFT DOCUMENTATION. SUBJECT TO CHANGE