3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-20 10:10:21 +00:00

make include paths uniformly use path relative to src. #534

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-31 13:24:11 -07:00
parent 71d80ab47f
commit b19f94ae5b
1370 changed files with 5964 additions and 5901 deletions

View file

@ -16,10 +16,10 @@ Author:
Notes:
--*/
#include"atom2bool_var.h"
#include"ast_smt2_pp.h"
#include"ref_util.h"
#include"goal.h"
#include "sat/tactic/atom2bool_var.h"
#include "ast/ast_smt2_pp.h"
#include "util/ref_util.h"
#include "tactic/goal.h"
void atom2bool_var::mk_inv(expr_ref_vector & lit2expr) const {
obj_map<expr, var>::iterator it = m_mapping.begin();

View file

@ -19,8 +19,8 @@ Notes:
#ifndef ATOM2BOOL_VAR_H_
#define ATOM2BOOL_VAR_H_
#include"expr2var.h"
#include"sat_types.h"
#include "ast/expr2var.h"
#include "sat/sat_types.h"
/**
\brief Mapping from atoms into SAT boolean variables.

View file

@ -26,16 +26,16 @@ Author:
Notes:
--*/
#include"goal2sat.h"
#include"ast_smt2_pp.h"
#include"ref_util.h"
#include"cooperate.h"
#include"filter_model_converter.h"
#include"model_evaluator.h"
#include"for_each_expr.h"
#include"model_v2_pp.h"
#include"tactic.h"
#include"ast_pp.h"
#include "sat/tactic/goal2sat.h"
#include "ast/ast_smt2_pp.h"
#include "util/ref_util.h"
#include "util/cooperate.h"
#include "tactic/filter_model_converter.h"
#include "model/model_evaluator.h"
#include "ast/for_each_expr.h"
#include "model/model_v2_pp.h"
#include "tactic/tactic.h"
#include "ast/ast_pp.h"
#include<sstream>
struct goal2sat::imp {

View file

@ -29,10 +29,10 @@ Notes:
#ifndef GOAL2SAT_H_
#define GOAL2SAT_H_
#include"goal.h"
#include"sat_solver.h"
#include"model_converter.h"
#include"atom2bool_var.h"
#include "tactic/goal.h"
#include "sat/sat_solver.h"
#include "tactic/model_converter.h"
#include "sat/tactic/atom2bool_var.h"
class goal2sat {
struct imp;

View file

@ -16,12 +16,12 @@ Author:
Notes:
--*/
#include"tactical.h"
#include"goal2sat.h"
#include"sat_solver.h"
#include"filter_model_converter.h"
#include"ast_smt2_pp.h"
#include"model_v2_pp.h"
#include "tactic/tactical.h"
#include "sat/tactic/goal2sat.h"
#include "sat/sat_solver.h"
#include "tactic/filter_model_converter.h"
#include "ast/ast_smt2_pp.h"
#include "model/model_v2_pp.h"
class sat_tactic : public tactic {

View file

@ -19,7 +19,7 @@ Notes:
#ifndef SAT_TACTIC_H_
#define SAT_TACTIC_H_
#include"params.h"
#include "util/params.h"
class ast_manager;
class tactic;