mirror of
https://github.com/Z3Prover/z3
synced 2025-08-13 14:40:55 +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
|
@ -16,9 +16,9 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"ast_smt2_pp.h"
|
||||
#include"fpa_rewriter.h"
|
||||
#include"fpa2bv_model_converter.h"
|
||||
#include "ast/ast_smt2_pp.h"
|
||||
#include "ast/rewriter/fpa_rewriter.h"
|
||||
#include "tactic/fpa/fpa2bv_model_converter.h"
|
||||
|
||||
void fpa2bv_model_converter::display(std::ostream & out) {
|
||||
out << "(fpa2bv-model-converter";
|
||||
|
|
|
@ -19,9 +19,9 @@ Notes:
|
|||
#ifndef FPA2BV_MODEL_CONVERTER_H_
|
||||
#define FPA2BV_MODEL_CONVERTER_H_
|
||||
|
||||
#include"fpa2bv_converter.h"
|
||||
#include"model_converter.h"
|
||||
#include"bv2fpa_converter.h"
|
||||
#include "ast/fpa/fpa2bv_converter.h"
|
||||
#include "tactic/model_converter.h"
|
||||
#include "ast/fpa/bv2fpa_converter.h"
|
||||
|
||||
class fpa2bv_model_converter : public model_converter {
|
||||
ast_manager & m;
|
||||
|
|
|
@ -16,11 +16,11 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"fpa2bv_rewriter.h"
|
||||
#include"simplify_tactic.h"
|
||||
#include"fpa2bv_tactic.h"
|
||||
#include"fpa2bv_model_converter.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "ast/fpa/fpa2bv_rewriter.h"
|
||||
#include "tactic/core/simplify_tactic.h"
|
||||
#include "tactic/fpa/fpa2bv_tactic.h"
|
||||
#include "tactic/fpa/fpa2bv_model_converter.h"
|
||||
|
||||
class fpa2bv_tactic : public tactic {
|
||||
struct imp {
|
||||
|
|
|
@ -19,7 +19,7 @@ Notes:
|
|||
#ifndef FPA2BV_TACTIC_H_
|
||||
#define FPA2BV_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
|
|
|
@ -16,18 +16,18 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"simplify_tactic.h"
|
||||
#include"bit_blaster_tactic.h"
|
||||
#include"sat_tactic.h"
|
||||
#include"fpa2bv_tactic.h"
|
||||
#include"smt_tactic.h"
|
||||
#include"propagate_values_tactic.h"
|
||||
#include"ackermannize_bv_tactic.h"
|
||||
#include"probe_arith.h"
|
||||
#include"qfnra_tactic.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "tactic/core/simplify_tactic.h"
|
||||
#include "tactic/bv/bit_blaster_tactic.h"
|
||||
#include "sat/tactic/sat_tactic.h"
|
||||
#include "tactic/fpa/fpa2bv_tactic.h"
|
||||
#include "smt/tactic/smt_tactic.h"
|
||||
#include "tactic/core/propagate_values_tactic.h"
|
||||
#include "ackermannization/ackermannize_bv_tactic.h"
|
||||
#include "tactic/arith/probe_arith.h"
|
||||
#include "tactic/smtlogics/qfnra_tactic.h"
|
||||
|
||||
#include"qffp_tactic.h"
|
||||
#include "tactic/fpa/qffp_tactic.h"
|
||||
|
||||
|
||||
struct is_non_fp_qfnra_predicate {
|
||||
|
|
|
@ -20,7 +20,7 @@ Notes:
|
|||
#ifndef QFFP_TACTIC_H_
|
||||
#define QFFP_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