summaryrefslogtreecommitdiff
path: root/src/proof
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/proof
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/proof')
-rw-r--r--src/proof/proof_manager.cpp2
-rw-r--r--src/proof/theory_proof.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/proof/proof_manager.cpp b/src/proof/proof_manager.cpp
index 33f284bf8..14556708b 100644
--- a/src/proof/proof_manager.cpp
+++ b/src/proof/proof_manager.cpp
@@ -19,6 +19,7 @@
#include "base/check.h"
#include "context/context.h"
+#include "expr/node_visitor.h"
#include "options/bv_options.h"
#include "options/proof_options.h"
#include "proof/clause_id.h"
@@ -31,7 +32,6 @@
#include "smt/smt_engine.h"
#include "smt/smt_engine_scope.h"
#include "smt/smt_statistics_registry.h"
-#include "smt_util/node_visitor.h"
#include "theory/arrays/theory_arrays.h"
#include "theory/output_channel.h"
#include "theory/term_registration_visitor.h"
diff --git a/src/proof/theory_proof.cpp b/src/proof/theory_proof.cpp
index e746a6315..f4a762cb0 100644
--- a/src/proof/theory_proof.cpp
+++ b/src/proof/theory_proof.cpp
@@ -18,6 +18,7 @@
#include "base/check.h"
#include "context/context.h"
+#include "expr/node_visitor.h"
#include "options/bv_options.h"
#include "options/proof_options.h"
#include "proof/arith_proof.h"
@@ -35,7 +36,6 @@
#include "prop/sat_solver_types.h"
#include "smt/smt_engine.h"
#include "smt/smt_engine_scope.h"
-#include "smt_util/node_visitor.h"
#include "theory/arrays/theory_arrays.h"
#include "theory/bv/theory_bv.h"
#include "theory/output_channel.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback