@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
19 lines (18 loc) • 488 B
TypeScript
import type { KnownParserName } from '../r-bridge/parser';
export interface SingleBenchmarkCliOptions {
verbose: boolean;
help: boolean;
input?: string;
'file-id'?: number;
'run-num'?: number;
slice: string;
output?: string;
parser: KnownParserName;
'dataframe-shape-inference': boolean;
'enable-pointer-tracking': boolean;
'max-slices': number;
'cfg': boolean;
threshold?: number;
'sampling-strategy': string;
seed?: string;
}