diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/analyze-archive.py | 5 | ||||
-rwxr-xr-x | bin/analyze-kconfig.py | 5 | ||||
-rwxr-xr-x | bin/analyze-log.py | 5 |
3 files changed, 0 insertions, 15 deletions
diff --git a/bin/analyze-archive.py b/bin/analyze-archive.py index 9cdf42c..9414d1a 100755 --- a/bin/analyze-archive.py +++ b/bin/analyze-archive.py @@ -254,11 +254,6 @@ if __name__ == "__main__": type=str, help="Perform substate analysis", ) - parser.add_argument( - "--force-tree", - action="store_true", - help="Build regression tree without checking whether static/analytic functions are sufficient.", - ) parser.add_argument("measurement", nargs="+") args = parser.parse_args() diff --git a/bin/analyze-kconfig.py b/bin/analyze-kconfig.py index 716cab4..bdfde8f 100755 --- a/bin/analyze-kconfig.py +++ b/bin/analyze-kconfig.py @@ -71,11 +71,6 @@ def main(): help="Show Kconfig symbols which are only present in a single configuration. Must be used with an experiment result directory.", ) parser.add_argument( - "--force-tree", - action="store_true", - help="Build decision tree without checking for analytic functions first. Use this for large kconfig files.", - ) - parser.add_argument( "--skip-param-stats", action="store_true", help="Do not compute param stats that are required for RMT. Use this for large kconfig files.", diff --git a/bin/analyze-log.py b/bin/analyze-log.py index f3e819a..65f3b44 100755 --- a/bin/analyze-log.py +++ b/bin/analyze-log.py @@ -37,11 +37,6 @@ def main(): ) dfatool.cli.add_standard_arguments(parser) parser.add_argument( - "--force-tree", - action="store_true", - help="Build decision tree without checking for analytic functions first", - ) - parser.add_argument( "--export-model", metavar="FILE", type=str, help="Export JSON model to FILE" ) parser.add_argument( |