mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 05:15:52 +00:00
theory_str frontend changes
This commit is contained in:
parent
a048d74bae
commit
46ac718790
5 changed files with 76 additions and 6 deletions
|
@ -117,6 +117,9 @@ public:
|
|||
explicit parameter(symbol const & s): m_kind(PARAM_SYMBOL) { new (m_symbol) symbol(s); }
|
||||
explicit parameter(rational const & r): m_kind(PARAM_RATIONAL) { new (m_rational) rational(r); }
|
||||
explicit parameter(double d):m_kind(PARAM_DOUBLE), m_dval(d) {}
|
||||
explicit parameter(const char *s):m_kind(PARAM_SYMBOL) {
|
||||
new (m_symbol) symbol(s);
|
||||
}
|
||||
explicit parameter(unsigned ext_id, bool):m_kind(PARAM_EXTERNAL), m_ext_id(ext_id) {}
|
||||
parameter(parameter const&);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue