summaryrefslogtreecommitdiff
path: root/src/options/options_handler.cpp
diff options
context:
space:
mode:
authorGereon Kremer <nafur42@gmail.com>2021-06-15 22:30:19 +0200
committerGitHub <noreply@github.com>2021-06-15 20:30:19 +0000
commit6bae871954c48993009ed91d4b907c136017ed38 (patch)
tree1e392bddc867fec68125525329123652a22b8217 /src/options/options_handler.cpp
parent09e438c6e6d10e0ad1e7c3e3de39ed4eb1d48ee1 (diff)
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.
Diffstat (limited to 'src/options/options_handler.cpp')
-rw-r--r--src/options/options_handler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/options/options_handler.cpp b/src/options/options_handler.cpp
index c1c843802..1ac5ec56d 100644
--- a/src/options/options_handler.cpp
+++ b/src/options/options_handler.cpp
@@ -33,7 +33,6 @@
#include "options/didyoumean.h"
#include "options/language.h"
#include "options/option_exception.h"
-#include "options/resource_manager_options.h"
#include "options/smt_options.h"
#include "options/theory_options.h"
@@ -83,7 +82,7 @@ unsigned long OptionsHandler::limitHandler(std::string option,
void OptionsHandler::setResourceWeight(std::string option, std::string optarg)
{
- d_options->resman.resourceWeightHolder.emplace_back(optarg);
+ d_options->base.resourceWeightHolder.emplace_back(optarg);
}
// theory/quantifiers/options_handlers.h
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback