3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

tried logic ALL for univariate solver

Allows us to solve bench25 but some others turn into unknown
This commit is contained in:
Jakob Rath 2023-01-24 11:34:02 +01:00
parent 7fbf27309b
commit b460150f98

View file

@ -420,7 +420,12 @@ namespace polysat {
public:
univariate_bitblast_factory() :
m_logic("QF_BV") {
#if 1
m_logic("QF_BV")
#else
m_logic("ALL")
#endif
{
m_factory = mk_smt_strategic_solver_factory(m_logic);
}