From 06de5f422c19a6c97157e3d8f5475dea4568340f Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Fri, 29 Aug 2025 17:05:41 -0700 Subject: [PATCH] remove str parameters --- src/params/smt_params_helper.pyg | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/params/smt_params_helper.pyg b/src/params/smt_params_helper.pyg index d5af57ef2..9673b7e9b 100644 --- a/src/params/smt_params_helper.pyg +++ b/src/params/smt_params_helper.pyg @@ -123,22 +123,7 @@ def_module_params(module_name='smt', ('seq.validate', BOOL, False, 'enable self-validation of theory axioms created by seq theory'), ('seq.max_unfolding', UINT, 1000000000, 'maximal unfolding depth for checking string equations and regular expressions'), ('seq.min_unfolding', UINT, 1, 'initial bound for strings whose lengths are bounded by iterative deepening. Set this to a higher value if there are only models with larger string lengths'), - ('str.strong_arrangements', BOOL, True, 'assert equivalences instead of implications when generating string arrangement axioms'), - ('str.aggressive_length_testing', BOOL, False, 'prioritize testing concrete length values over generating more options'), - ('str.aggressive_value_testing', BOOL, False, 'prioritize testing concrete string constant values over generating more options'), - ('str.aggressive_unroll_testing', BOOL, True, 'prioritize testing concrete regex unroll counts over generating more options'), - ('str.fast_length_tester_cache', BOOL, False, 'cache length tester constants instead of regenerating them'), - ('str.fast_value_tester_cache', BOOL, True, 'cache value tester constants instead of regenerating them'), - ('str.string_constant_cache', BOOL, True, 'cache all generated string constants generated from anywhere in theory_str'), ('theory_aware_branching', BOOL, False, 'Allow the context to use extra information from theory solvers regarding literal branching prioritization.'), - ('str.overlap_priority', DOUBLE, -0.1, 'theory-aware priority for overlapping variable cases; use smt.theory_aware_branching=true'), - ('str.regex_automata_difficulty_threshold', UINT, 1000, 'difficulty threshold for regex automata heuristics'), - ('str.regex_automata_intersection_difficulty_threshold', UINT, 1000, 'difficulty threshold for regex intersection heuristics'), - ('str.regex_automata_failed_automaton_threshold', UINT, 10, 'number of failed automaton construction attempts after which a full automaton is automatically built'), - ('str.regex_automata_failed_intersection_threshold', UINT, 10, 'number of failed automaton intersection attempts after which intersection is always computed'), - ('str.regex_automata_length_attempt_threshold', UINT, 10, 'number of length/path constraint attempts before checking unsatisfiability of regex terms'), - ('str.fixed_length_refinement', BOOL, False, 'use abstraction refinement in fixed-length equation solver (Z3str3 only)'), - ('str.fixed_length_naive_cex', BOOL, True, 'construct naive counterexamples when fixed-length model construction fails for a given length assignment (Z3str3 only)'), ('sls.enable', BOOL, False, 'enable sls co-processor with SMT engine'), ('sls.parallel', BOOL, True, 'use sls co-processor in parallel or sequential with SMT engine'), ('core.minimize', BOOL, False, 'minimize unsat core produced by SMT context'),