3
0
Fork 0
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:
Arie Gurfinkel 2020-09-04 13:50:35 -04:00 committed by GitHub
parent f370d8d9b4
commit 687a16a796
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2175 additions and 0 deletions

View file

@ -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;
}