Click or drag to resize

SimulationModelMaxIterationSkip Property

Defines a maximum number of iterations that may be skipped randomly in the model.

Namespace:  Livit.Learn.Model.Simulator
Assembly:  Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntax
C#
public int MaxIterationSkip { get; set; }

Property Value

Type: Int32
Remarks

This property skips random iterations until the maximum number is reached, increasing performance but decreasing precision.

This is especially useful when using FlatContainerModel with high Density, where performance is more important than precision.

The delta time variable is automatically increased if more time has passed since the last iteration was run. It can be accessed using the following the MinutesSinceLastIteration property.

See Also