From 959f4c9440d34529063f79a544c3ffafb7b40d9d Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Mon, 29 Nov 2021 19:44:58 -0800 Subject: [PATCH] rename files to theory_user_propagator --- src/smt/CMakeLists.txt | 2 +- src/smt/smt_context.h | 2 +- src/smt/{user_propagator.cpp => theory_user_propagator.cpp} | 4 ++-- src/smt/{user_propagator.h => theory_user_propagator.h} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename src/smt/{user_propagator.cpp => theory_user_propagator.cpp} (98%) rename src/smt/{user_propagator.h => theory_user_propagator.h} (100%) diff --git a/src/smt/CMakeLists.txt b/src/smt/CMakeLists.txt index 9d2a2b406..e6ee97046 100644 --- a/src/smt/CMakeLists.txt +++ b/src/smt/CMakeLists.txt @@ -70,9 +70,9 @@ z3_add_component(smt theory_str.cpp theory_str_mc.cpp theory_str_regex.cpp + theory_user_propagator.cpp theory_utvpi.cpp theory_wmaxsat.cpp - user_propagator.cpp uses_theory.cpp watch_list.cpp COMPONENT_DEPENDENCIES diff --git a/src/smt/smt_context.h b/src/smt/smt_context.h index 20ee47629..700c2f211 100644 --- a/src/smt/smt_context.h +++ b/src/smt/smt_context.h @@ -46,7 +46,7 @@ Revision History: #include "util/statistics.h" #include "smt/fingerprints.h" #include "smt/proto_model/proto_model.h" -#include "smt/user_propagator.h" +#include "smt/theory_user_propagator.h" #include "model/model.h" #include "solver/progress_callback.h" #include "solver/assertions/asserted_formulas.h" diff --git a/src/smt/user_propagator.cpp b/src/smt/theory_user_propagator.cpp similarity index 98% rename from src/smt/user_propagator.cpp rename to src/smt/theory_user_propagator.cpp index 799ae23e2..c4747a084 100644 --- a/src/smt/user_propagator.cpp +++ b/src/smt/theory_user_propagator.cpp @@ -3,7 +3,7 @@ Copyright (c) 2020 Microsoft Corporation Module Name: - user_propagator.cpp + theory_user_propagator.cpp Abstract: @@ -17,7 +17,7 @@ Author: #include "ast/ast_pp.h" -#include "smt/user_propagator.h" +#include "smt/theory_user_propagator.h" #include "smt/smt_context.h" using namespace smt; diff --git a/src/smt/user_propagator.h b/src/smt/theory_user_propagator.h similarity index 100% rename from src/smt/user_propagator.h rename to src/smt/theory_user_propagator.h