mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
enable logic parameter update to configure SMTLIB logic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7f51ecab37
commit
67397bf71e
16 changed files with 30 additions and 30 deletions
|
@ -67,7 +67,7 @@ public:
|
|||
void set_source_info(const char* si) { if (si) m_source_info = si; }
|
||||
void set_status(const char* s) { if (s) m_status = s; }
|
||||
void set_category(const char* c) { if (c) m_category = c; }
|
||||
void set_logic(const char* l) { if (l) m_logic = l; }
|
||||
void set_logic(symbol const& l) { m_logic = l; }
|
||||
void add_attributes(const char* s) { if (s) m_attributes += s; }
|
||||
void add_assumption(expr* n) { m_assumptions.push_back(n); }
|
||||
void add_assumption_star(expr* n) { m_assumptions_star.push_back(n); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue