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:
parent
7fbf27309b
commit
b460150f98
1 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue