19 lines
495 B
C#
19 lines
495 B
C#
namespace StellaOps.Bench.LinkNotMerge.Baseline;
|
|
|
|
internal sealed record BaselineEntry(
|
|
string ScenarioId,
|
|
int Iterations,
|
|
int Observations,
|
|
int Aliases,
|
|
int Linksets,
|
|
double MeanTotalMs,
|
|
double P95TotalMs,
|
|
double MaxTotalMs,
|
|
double MeanInsertMs,
|
|
double MeanCorrelationMs,
|
|
double MeanThroughputPerSecond,
|
|
double MinThroughputPerSecond,
|
|
double MeanInsertThroughputPerSecond,
|
|
double MinInsertThroughputPerSecond,
|
|
double MaxAllocatedMb);
|