Previous Next


AutoStopCheckFreq Property (RDKSettings Object)

Description

Specifies or returns the setting controlling how often (in number of iterations) to check the autostop criteria. This property has no effect unless the AutoStop property is TRUE.

Syntax

object.AutoStopCheckFreq

Arguments

None.

Return Value

(Long) – the number of iterations between convergence checking.

Example

With RDKApp.SimSettings
    .AutoStop = TRUE
    .AutoStopPercentageChange = .015
    .AutoStopCheckFreq = 100
End With