Skip to content

Commit d6986d8

Browse files
Fix relative include paths
1 parent 0f9c202 commit d6986d8

15 files changed

+21
-18
lines changed

src/ansi-c/literals/convert_float_literal.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ Author: Daniel Kroening, [email protected]
2121
#include <util/std_types.h>
2222
#include <util/string2int.h>
2323

24+
#include <ansi-c/gcc_types.h>
25+
2426
#include "parse_float.h"
25-
#include "../gcc_types.h"
2627

2728
exprt convert_float_literal(const std::string &src)
2829
{

src/goto-instrument/wmm/goto2graph.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Date: 2012
2121

2222
#include <linking/static_lifetime_init.h>
2323

24-
#include "../rw_set.h"
24+
#include <goto-instrument/rw_set.h>
25+
2526
#include "fence.h"
2627

2728
// #define PRINT_UNSAFES

src/goto-instrument/wmm/shared_buffers.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include <linking/static_lifetime_init.h>
1414

15-
#include "../rw_set.h"
15+
#include <goto-instrument/rw_set.h>
16+
1617
#include "fence.h"
1718

1819
/// returns a unique id (for fresh variables)

src/goto-instrument/wmm/weak_memory.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Date: September 2011
2727

2828
#include <linking/static_lifetime_init.h>
2929

30-
#include "../rw_set.h"
30+
#include <goto-instrument/rw_set.h>
3131

3232
#include "shared_buffers.h"
3333
#include "goto2graph.h"

src/solvers/flattening/boolbv.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Author: Daniel Kroening, [email protected]
2626

2727
#include "boolbv_type.h"
2828

29-
#include "../floatbv/float_utils.h"
30-
#include "../lowering/expr_lowering.h"
29+
#include <solvers/floatbv/float_utils.h>
30+
#include <solvers/lowering/expr_lowering.h>
3131

3232
bool boolbvt::literal(
3333
const exprt &expr,

src/solvers/flattening/boolbv_abs.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
bvt boolbvt::convert_abs(const exprt &expr)
1818
{

src/solvers/flattening/boolbv_add_sub.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author: Daniel Kroening, [email protected]
1111
#include <util/invariant.h>
1212
#include <util/std_types.h>
1313

14-
#include "../floatbv/float_utils.h"
14+
#include <solvers/floatbv/float_utils.h>
1515

1616
bvt boolbvt::convert_add_sub(const exprt &expr)
1717
{

src/solvers/flattening/boolbv_bv_rel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
literalt boolbvt::convert_bv_rel(const exprt &expr)
1818
{

src/solvers/flattening/boolbv_floatbv_op.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Kroening, [email protected]
1313

1414
#include <util/std_types.h>
1515

16-
#include "../floatbv/float_utils.h"
16+
#include <solvers/floatbv/float_utils.h>
1717

1818
bvt boolbvt::convert_floatbv_typecast(const floatbv_typecast_exprt &expr)
1919
{

src/solvers/flattening/boolbv_ieee_float_rel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include "boolbv_type.h"
1414

15-
#include "../floatbv/float_utils.h"
15+
#include <solvers/floatbv/float_utils.h>
1616

1717
literalt boolbvt::convert_ieee_float_rel(const exprt &expr)
1818
{

src/solvers/flattening/boolbv_map.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Author: Daniel Kroening, [email protected]
1010

1111
#include <util/threeval.h>
1212

13-
#include "../prop/prop.h"
13+
#include <solvers/prop/prop.h>
1414

1515
#include "boolbv_width.h"
1616

src/solvers/flattening/boolbv_typecast.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include <util/std_types.h>
1414

15+
#include <solvers/floatbv/float_utils.h>
16+
1517
#include "boolbv_type.h"
1618
#include "c_bit_field_replacement_type.h"
1719

18-
#include "../floatbv/float_utils.h"
19-
2020
bvt boolbvt::convert_bv_typecast(const typecast_exprt &expr)
2121
{
2222
const typet &expr_type=ns.follow(expr.type());

src/solvers/flattening/boolbv_unary_minus.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Author: Daniel Kroening, [email protected]
1010

1111
#include <util/std_types.h>
1212

13-
#include "boolbv_type.h"
13+
#include <solvers/floatbv/float_utils.h>
1414

15-
#include "../floatbv/float_utils.h"
15+
#include "boolbv_type.h"
1616

1717
bvt boolbvt::convert_unary_minus(const unary_exprt &expr)
1818
{

src/solvers/floatbv/float_bv.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Kroening, [email protected]
1313
#include <util/ieee_float.h>
1414
#include <util/std_expr.h>
1515

16-
#include "../flattening/bv_utils.h"
16+
#include <solvers/flattening/bv_utils.h>
1717

1818
class float_bvt
1919
{

src/solvers/qbf/qdimacs_cnf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Kroening, [email protected]
1313
#include <set>
1414
#include <iosfwd>
1515

16-
#include "../sat/dimacs_cnf.h"
16+
#include <solvers/sat/dimacs_cnf.h>
1717

1818
class qdimacs_cnft:public dimacs_cnft
1919
{

0 commit comments

Comments
 (0)