interface PerSliceStats {
    measurements: Map<"total" | "static slicing" | "reconstruct code", bigint>;
    numberOfDataflowNodesSliced: number;
    reconstructedCode: ReconstructionResult;
    slicingCriteria: {
        criterion: SingleSlicingCriterion;
        id: NodeId;
    }[];
    timesHitThreshold: number;
}

Properties

measurements: Map<"total" | "static slicing" | "reconstruct code", bigint>
numberOfDataflowNodesSliced: number
reconstructedCode: ReconstructionResult
slicingCriteria: {
    criterion: SingleSlicingCriterion;
    id: NodeId;
}[]
timesHitThreshold: number