mirror of
https://github.com/Z3Prover/z3
synced 2025-08-27 21:48:56 +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:
parent
71d80ab47f
commit
b19f94ae5b
1370 changed files with 5964 additions and 5901 deletions
|
@ -21,17 +21,17 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"goal2nlsat.h"
|
||||
#include"goal.h"
|
||||
#include"goal_util.h"
|
||||
#include"nlsat_solver.h"
|
||||
#include"expr2polynomial.h"
|
||||
#include"expr2var.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"tactic.h"
|
||||
#include"ast_pp.h"
|
||||
#include"polynomial.h"
|
||||
#include"algebraic_numbers.h"
|
||||
#include "nlsat/tactic/goal2nlsat.h"
|
||||
#include "tactic/goal.h"
|
||||
#include "tactic/goal_util.h"
|
||||
#include "nlsat/nlsat_solver.h"
|
||||
#include "ast/expr2polynomial.h"
|
||||
#include "ast/expr2var.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "tactic/tactic.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "math/polynomial/polynomial.h"
|
||||
#include "math/polynomial/algebraic_numbers.h"
|
||||
|
||||
struct goal2nlsat::imp {
|
||||
struct nlsat_expr2polynomial : public expr2polynomial {
|
||||
|
|
|
@ -24,8 +24,8 @@ Notes:
|
|||
#ifndef GOAL2NLSAT_H_
|
||||
#define GOAL2NLSAT_H_
|
||||
|
||||
#include"nlsat_types.h"
|
||||
#include"model_converter.h"
|
||||
#include "nlsat/nlsat_types.h"
|
||||
#include "tactic/model_converter.h"
|
||||
|
||||
class goal;
|
||||
class expr2var;
|
||||
|
|
|
@ -16,16 +16,16 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"goal2nlsat.h"
|
||||
#include"nlsat_solver.h"
|
||||
#include"model.h"
|
||||
#include"expr2var.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include"z3_exception.h"
|
||||
#include"algebraic_numbers.h"
|
||||
#include"ast_pp.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "nlsat/tactic/goal2nlsat.h"
|
||||
#include "nlsat/nlsat_solver.h"
|
||||
#include "model/model.h"
|
||||
#include "ast/expr2var.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "ast/ast_smt2_pp.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include "math/polynomial/algebraic_numbers.h"
|
||||
#include "ast/ast_pp.h"
|
||||
|
||||
class nlsat_tactic : public tactic {
|
||||
struct expr_display_var_proc : public nlsat::display_var_proc {
|
||||
|
|
|
@ -19,7 +19,7 @@ Notes:
|
|||
#ifndef NLSAT_TACTIC_H_
|
||||
#define NLSAT_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
|
|
|
@ -16,18 +16,18 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include "tactic/tactical.h"
|
||||
|
||||
#include"tseitin_cnf_tactic.h"
|
||||
#include"degree_shift_tactic.h"
|
||||
#include"purify_arith_tactic.h"
|
||||
#include"nlsat_tactic.h"
|
||||
#include"factor_tactic.h"
|
||||
#include"simplify_tactic.h"
|
||||
#include"elim_uncnstr_tactic.h"
|
||||
#include"propagate_values_tactic.h"
|
||||
#include"solve_eqs_tactic.h"
|
||||
#include"elim_term_ite_tactic.h"
|
||||
#include "tactic/core/tseitin_cnf_tactic.h"
|
||||
#include "tactic/arith/degree_shift_tactic.h"
|
||||
#include "tactic/arith/purify_arith_tactic.h"
|
||||
#include "nlsat/tactic/nlsat_tactic.h"
|
||||
#include "tactic/arith/factor_tactic.h"
|
||||
#include "tactic/core/simplify_tactic.h"
|
||||
#include "tactic/core/elim_uncnstr_tactic.h"
|
||||
#include "tactic/core/propagate_values_tactic.h"
|
||||
#include "tactic/core/solve_eqs_tactic.h"
|
||||
#include "tactic/core/elim_term_ite_tactic.h"
|
||||
|
||||
tactic * mk_qfnra_nlsat_tactic(ast_manager & m, params_ref const & p) {
|
||||
params_ref main_p = p;
|
||||
|
|
|
@ -19,7 +19,7 @@ Notes:
|
|||
#ifndef QFNRA_NLSAT_TACTIC_H_
|
||||
#define QFNRA_NLSAT_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue