mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 09:04:07 +00:00
move directory
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
42e601483d
commit
afc4c700b1
|
@ -14,7 +14,6 @@ z3_add_component(ast
|
|||
ast_translation.cpp
|
||||
ast_util.cpp
|
||||
bv_decl_plugin.cpp
|
||||
cached_var_subst.cpp
|
||||
char_decl_plugin.cpp
|
||||
datatype_decl_plugin.cpp
|
||||
decl_collector.cpp
|
||||
|
|
|
@ -8,6 +8,7 @@ z3_add_component(rewriter
|
|||
bv_bounds.cpp
|
||||
bv_elim.cpp
|
||||
bv_rewriter.cpp
|
||||
cached_var_subst.cpp
|
||||
datatype_rewriter.cpp
|
||||
der.cpp
|
||||
distribute_forall.cpp
|
||||
|
|
|
@ -16,7 +16,7 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include "ast/cached_var_subst.h"
|
||||
#include "ast/rewriter/cached_var_subst.h"
|
||||
#include "ast/rewriter/rewriter_def.h"
|
||||
|
||||
bool cached_var_subst::key_eq_proc::operator()(cached_var_subst::key * k1, cached_var_subst::key * k2) const {
|
|
@ -19,13 +19,13 @@ Revision History:
|
|||
#pragma once
|
||||
|
||||
#include "ast/ast.h"
|
||||
#include "ast/cached_var_subst.h"
|
||||
#include "ast/quantifier_stat.h"
|
||||
#include "ast/rewriter/cached_var_subst.h"
|
||||
#include "parsers/util/cost_parser.h"
|
||||
#include "smt/smt_checker.h"
|
||||
#include "smt/smt_quantifier.h"
|
||||
#include "smt/fingerprints.h"
|
||||
#include "smt/params/qi_params.h"
|
||||
#include "parsers/util/cost_parser.h"
|
||||
#include "smt/cost_evaluator.h"
|
||||
#include "util/statistics.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue