Skip to main content

Type Alias: NormalBenchmarkResult

NormalBenchmarkResult: BaseBenchmarkResult & SolveResult & { error: undefined; }

Type declaration

error

error: undefined

For regular runs, error is undefined.

Remarks

This property can be used to distinguish regular runs from error runs. When error is undefined, the run completed successfully and the result contains all properties from SolveResult.

Remarks

Data about normal benchmark run (that didn't end by an error), see function benchmark.

It is an extension of BaseBenchmarkResult and SolveResult, i.e. it contains all properties from those two types. it also contains an error field that is always undefined.

See