Table of Contents

Interface IStoppingCriteria

Namespace
BenchmarkDotNet.Engines
Assembly
BenchmarkDotNet.dll

A stopping criteria checks when it's time to terminate iteration in the current stage.

public interface IStoppingCriteria

Properties

MaxIterationCount

The maximum possible count of iterations. Engine needs this value for setting the maximum capacity of the returned list of measurements. The correct capacity helps to avoid infrastructure allocations during benchmarking.

int MaxIterationCount { get; }

Property Value

int

Title

Title which can be used in logs and diagnostics methods

string Title { get; }

Property Value

string

Warnings

An array of user-friendly warnings which notify about incorrect parameters.

IReadOnlyList<string> Warnings { get; }

Property Value

IReadOnlyList<string>

Methods

Evaluate(IReadOnlyList<Measurement>)

Checks do we have enough iterations

StoppingResult Evaluate(IReadOnlyList<Measurement> measurements)

Parameters

measurements IReadOnlyList<Measurement>

Returns

StoppingResult