@eagleoutice/flowr - v2.10.1
    Preparing search index...

    Interface BenchmarkSlicerStats

    Returns the stats but also the result of all setup steps (parsing, normalization, and the dataflow analysis) during the slicing. This is useful for debugging and visualizing the slicing process.

    interface BenchmarkSlicerStats {
        dataflow: DataflowInformation;
        normalize: NormalizedAst;
        parse: string;
        stats: SlicerStats;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of BenchmarkSlicerStats
    Index

    Properties

    the dataflow graph produced by the 'dataflow' step

    normalize: NormalizedAst

    the normalized AST produced by the 'normalization' step, including its parent decoration

    parse: string

    the initial and unmodified AST produced by the R side/the 'parse' step

    the measurements obtained during the benchmark