summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAlex Ozdemir <aozdemir@hmc.edu>2020-03-18 14:30:30 -0700
committerGitHub <noreply@github.com>2020-03-18 16:30:30 -0500
commitba3a69d7915292ddb649bdb8b4830623b337818c (patch)
tree43b5b3b2666bb69e621bbe5ab569e239c87590ba /src/theory/theory_engine.cpp
parent5c825235dd99b7c0767789db9d782e24c581ace5 (diff)
Move node visitor class from smt_util/ to expr/ (#4110)
Done by: Running rg 'smt_util/node_visitor' -l | xargs sed -i 's/smt_util\/node_visitor/expr\/node_visitor/' in src to change the #includes Moving the file Changing src/expr/CMakeLists.txt and src/CMakeLists.txt clang-format, omitting node_visitor.h. In reference to discussion, here.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 60ad00fc5..32a80a418 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -25,6 +25,7 @@
#include "expr/node.h"
#include "expr/node_algorithm.h"
#include "expr/node_builder.h"
+#include "expr/node_visitor.h"
#include "options/bv_options.h"
#include "options/options.h"
#include "options/proof_options.h"
@@ -37,7 +38,6 @@
#include "proof/theory_proof.h"
#include "smt/logic_exception.h"
#include "smt/term_formula_removal.h"
-#include "smt_util/node_visitor.h"
#include "theory/arith/arith_ite_utils.h"
#include "theory/bv/theory_bv_utils.h"
#include "theory/care_graph.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback