summaryrefslogtreecommitdiff
path: root/src/smt/options_manager.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-08-17 12:52:53 -0500
committerGitHub <noreply@github.com>2021-08-17 12:52:53 -0500
commit0783307a81f3f27194d7c08e1e8f32123432b9b8 (patch)
tree080b4b48b245aa2f055033708b6788a92610ce55 /src/smt/options_manager.cpp
parent1f9f73a863401da3bc06fc82bb06f0afe947cce9 (diff)
parente8f18dd65c829c3c12158d57e1fc7d2c9dcdcfd4 (diff)
Merge branch 'master' into rmMaybermMaybe
Diffstat (limited to 'src/smt/options_manager.cpp')
-rw-r--r--src/smt/options_manager.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/smt/options_manager.cpp b/src/smt/options_manager.cpp
deleted file mode 100644
index a5dee27ae..000000000
--- a/src/smt/options_manager.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/******************************************************************************
- * Top contributors (to current version):
- * Andrew Reynolds, Aina Niemetz
- *
- * This file is part of the cvc5 project.
- *
- * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
- * in the top-level source directory and their institutional affiliations.
- * All rights reserved. See the file COPYING in the top-level source
- * directory for licensing information.
- * ****************************************************************************
- *
- * Module for managing options of an SmtEngine.
- */
-
-#include "smt/options_manager.h"
-
-#include "base/output.h"
-#include "expr/expr_iomanip.h"
-#include "options/base_options.h"
-#include "options/expr_options.h"
-#include "options/smt_options.h"
-#include "smt/command.h"
-#include "smt/dump.h"
-#include "smt/set_defaults.h"
-#include "util/resource_manager.h"
-
-namespace cvc5 {
-namespace smt {
-
-OptionsManager::OptionsManager(Options* opts) : d_options(opts)
-{
-}
-
-OptionsManager::~OptionsManager() {}
-
-void OptionsManager::notifySetOption(const std::string& key)
-{
-}
-
-void OptionsManager::finishInit(LogicInfo& logic, bool isInternalSubsolver)
-{
- // ensure that our heuristics are properly set up
- setDefaults(logic, isInternalSubsolver);
-}
-
-} // namespace smt
-} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback