mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
SMTFD is back (#4676)
This commit is contained in:
parent
f370d8d9b4
commit
687a16a796
5 changed files with 2175 additions and 0 deletions
|
@ -197,6 +197,14 @@ struct check_logic::imp {
|
|||
m_dt = true;
|
||||
m_nonlinear = true; // non-linear 0-1 variables may get eliminated
|
||||
}
|
||||
else if (logic == "SMTFD") {
|
||||
m_bvs = true;
|
||||
m_uf = true;
|
||||
m_arrays = true;
|
||||
m_ints = false;
|
||||
m_dt = false;
|
||||
m_nonlinear = false;
|
||||
}
|
||||
else {
|
||||
m_unknown_logic = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue