Set same options for proofs as for unsat cores (#1957)
authorAndres Noetzli <andres.noetzli@gmail.com>
Wed, 23 May 2018 05:20:59 +0000 (22:20 -0700)
committerGitHub <noreply@github.com>
Wed, 23 May 2018 05:20:59 +0000 (22:20 -0700)
commit4576b47b4acbae79c0ea76ebdc103f4c3155c4ab
tree88e3803fe39d995aa0e3306efa3d3ec97707b7e3
parent2ac3d0bf2c00edbbd04033815f10ba0207010f77
Set same options for proofs as for unsat cores (#1957)

In SmtEngine::setDefaults() we were setting options such as
--simplifciation=none for unsat cores but not proofs. Producing unsat
cores relies on the same infrastructure as proofs and should be a subset
of the same work in most cases. Thus, this commit changes
SmtEngine::setDefaults() to set the same options for proofs as we
previously only did for unsat cores. Additionally, it changes the
function to only set the simplificationMode to SIMPLIFICATION_MODE_BATCH
if proofs and unsat cores are not enabled. Fixes issue #1953.
src/smt/smt_engine.cpp
test/regress/regress0/arith/bug569.smt2
test/regress/regress0/quantifiers/lra-triv-gn.smt2