diff --git a/discopop_explorer/__main__.py b/discopop_explorer/__main__.py index b0dee494c..e21137359 100644 --- a/discopop_explorer/__main__.py +++ b/discopop_explorer/__main__.py @@ -105,7 +105,7 @@ def parse_args() -> ExplorerArguments: help="Path to llvm-cxxfilt executable. Required for task pattern detector if non-standard path should be used.", ) experimental_parser.add_argument( - "--disable-statistics", action="store_false", help="Disable the calculation and storing of statistics for code and generated suggestions." + "--enable-statistics", action="store_true", help="Disable the calculation and storing of statistics for code and generated suggestions." ) # fmt: on @@ -159,7 +159,7 @@ def parse_args() -> ExplorerArguments: log_level=arguments.log.upper(), write_log=arguments.write_log, load_existing_doall_and_reduction_patterns=arguments.load_existing_doall_and_reduction_patterns, - collect_statistics=arguments.disable_statistics, + collect_statistics=arguments.enable_statistics, )