• This function extracts the values of the specified category for each solver from the results data, calculates the statistical measures, and returns these statistics in a structured format.

    Parameters

    • resultsData: TraceData[]

      The array of result objects where each object corresponds to a particular solver's output.

    • category: string

      The category whose values are to be analyzed. The category could be time, memory, etc.

    • Optional defaultTime: number
    • Optional filterType: string

    Returns {
        [SolverName: string]: StatisticsColumns;
    }

    An object with solver names as keys. Each key points to an object that represents the statistical measures (average, min, max, standard deviation, sum, 10th percentile, 25th percentile, 50th percentile, 75th percentile, and 90th percentile) calculated from the values of the specified category for the corresponding solver. If the value of the category is not a finite number, the instance is not added to the final result.

Generated using TypeDoc