From 6bae871954c48993009ed91d4b907c136017ed38 Mon Sep 17 00:00:00 2001 From: Gereon Kremer Date: Tue, 15 Jun 2021 22:30:19 +0200 Subject: Remove public option wrappers (#6716) This PR gets rid of almost all remaining public option wrappers. It does so by - making base, main and parser options public such that they can directly be used from the driver and the parser - moving incremental and the resource limiting options to base - moving dumping options to main After this PR, the only option wrapper left is becoming obsolete as well after (the follow-up of) #6697. --- src/smt/set_defaults.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/smt/set_defaults.cpp') diff --git a/src/smt/set_defaults.cpp b/src/smt/set_defaults.cpp index cd05b84c4..e119ce4d4 100644 --- a/src/smt/set_defaults.cpp +++ b/src/smt/set_defaults.cpp @@ -66,7 +66,7 @@ void setDefaults(LogicInfo& logic, bool isInternalSubsolver) // unsat cores and proofs shenanigans if (options::dumpUnsatCoresFull()) { - opts.smt.dumpUnsatCores = true; + opts.driver.dumpUnsatCores = true; } if (options::checkUnsatCores() || options::dumpUnsatCores() || options::unsatAssumptions() -- cgit v1.2.3