mirror of
https://github.com/Z3Prover/z3
synced 2025-06-15 18:36:16 +00:00
add SMTLIB2.6 names for QF_SLIA and string-int conversion operators (#4341)
This commit is contained in:
parent
21c4d451d8
commit
6f0a367357
4 changed files with 14 additions and 7 deletions
|
@ -129,7 +129,7 @@ namespace smt {
|
|||
setup_QF_FP();
|
||||
else if (m_logic == "QF_FPBV" || m_logic == "QF_BVFP")
|
||||
setup_QF_FPBV();
|
||||
else if (m_logic == "QF_S")
|
||||
else if (m_logic == "QF_S" || m_logic == "QF_SLIA")
|
||||
setup_QF_S();
|
||||
else if (m_logic == "QF_DT")
|
||||
setup_QF_DT();
|
||||
|
@ -177,7 +177,7 @@ namespace smt {
|
|||
setup_QF_BVRE();
|
||||
else if (m_logic == "QF_AUFLIA")
|
||||
setup_QF_AUFLIA(st);
|
||||
else if (m_logic == "QF_S")
|
||||
else if (m_logic == "QF_S" || m_logic == "QF_SLIA")
|
||||
setup_QF_S();
|
||||
else if (m_logic == "AUFLIA")
|
||||
setup_AUFLIA(st);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue