interface BenchmarkSummarizerConfiguration {
    graphOutputPath?: string;
    inputPath: string;
    intermediateOutputPath: string;
    logger: ((message: string) => void);
    outputPath: string;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of BenchmarkSummarizerConfiguration

Properties

graphOutputPath?: string

If given, produce graph data output (e.g. for the benchmark visualization) to the given path

inputPath: string

The input path to read from

intermediateOutputPath: string

Path for the intermediate results of the preparation phase

logger: ((message: string) => void)
outputPath: string

Path for the final results of the summarization phase