mirror of
https://github.com/Z3Prover/z3
synced 2026-07-04 14:26:10 +00:00
Z3 arguments got ignored in the Nielsen graph
This commit is contained in:
parent
c20bc0e631
commit
8ac7a242eb
2 changed files with 16 additions and 18 deletions
|
|
@ -1074,18 +1074,18 @@ namespace seq {
|
|||
unsigned num_nodes() const { return m_nodes.size(); }
|
||||
|
||||
// maximum overall search depth (0 = unlimited)
|
||||
void set_max_search_depth(unsigned d) { m_max_search_depth = d; }
|
||||
void set_max_search_depth(const unsigned d) { m_max_search_depth = d; }
|
||||
|
||||
// maximum total DFS nodes per solve() call (0 = unlimited)
|
||||
void set_max_nodes(unsigned n) { m_max_nodes = n; }
|
||||
void set_max_nodes(const unsigned n) { m_max_nodes = n; }
|
||||
|
||||
// enable/disable Parikh image verification constraints
|
||||
void set_parikh_enabled(bool e) { m_parikh_enabled = e; }
|
||||
void set_parikh_enabled(const bool e) { m_parikh_enabled = e; }
|
||||
|
||||
void set_signature_split(bool e) { m_signature_split = e; }
|
||||
void set_signature_split(const bool e) { m_signature_split = e; }
|
||||
|
||||
void set_regex_factorization_threshold(unsigned max) { m_regex_factorization_threshold = max; }
|
||||
void set_regex_factorization_eager(bool e) { m_regex_factorization_eager = e; }
|
||||
void set_regex_factorization_threshold(const unsigned max) { m_regex_factorization_threshold = max; }
|
||||
void set_regex_factorization_eager(const bool e) { m_regex_factorization_eager = e; }
|
||||
|
||||
// display for debugging
|
||||
std::ostream& display(std::ostream& out) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue