@eagleoutice/flowr-dev
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
21 lines (20 loc) • 519 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;
'max-slices': number;
cfg: boolean;
cg: boolean;
'no-extra-phases': boolean;
calibrate: boolean;
threshold?: number;
'sampling-strategy': string;
seed?: string;
}