Skip to main content

Type Alias: BaseBenchmarkResult

BaseBenchmarkResult = { modelName: string; parameters: Parameters; solveDate: Date; }

Remarks​

Basic data about a benchmark run results produced by function benchmark. The following properties are always present in BenchmarkResult, regardless of whether the benchmark was successful or ended by an error.

See​

Benchmarking​

modelName​

modelName: string

Name of the model that was run.

Remarks​

The model name as set by Model.name. If the model name was not set, a unique name is generated automatically.


parameters​

parameters: Parameters

Parameters used to solve the model.

Remarks​

These parameters are the same as passed to function benchmark, except for parameter Parameters.randomSeed that can be changed when BenchmarkParameters.nbSeeds is used.


solveDate​

solveDate: Date

The date when the model was solved.