# HG changeset patch
# User Balazs Dezso <deba@inf.elte.hu>
# Date 1235386719 -3600
# Node ID f1f6cc37de04fc818cf2610d9cbe76ee8a2f6429
# Parent 2b6d5d22bb23c5f0a014e064a9a236bfc452c645
Fix several includes
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/adaptors.h
a
|
b
|
|
30 | 30 | #include <lemon/bits/variant.h> |
31 | 31 | |
32 | 32 | #include <lemon/bits/graph_adaptor_extender.h> |
| 33 | #include <lemon/bits/map_extender.h> |
33 | 34 | #include <lemon/tolerance.h> |
34 | 35 | |
35 | 36 | #include <algorithm> |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/edge_set_extender.h
a
|
b
|
|
19 | 19 | #ifndef LEMON_BITS_EDGE_SET_EXTENDER_H |
20 | 20 | #define LEMON_BITS_EDGE_SET_EXTENDER_H |
21 | 21 | |
| 22 | #include <lemon/core.h> |
22 | 23 | #include <lemon/error.h> |
23 | 24 | #include <lemon/bits/default_map.h> |
| 25 | #include <lemon/bits/map_extender.h> |
24 | 26 | |
25 | 27 | ///\ingroup digraphbits |
26 | 28 | ///\file |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/path_dump.h
a
|
b
|
|
19 | 19 | #ifndef LEMON_BITS_PRED_MAP_PATH_H |
20 | 20 | #define LEMON_BITS_PRED_MAP_PATH_H |
21 | 21 | |
| 22 | #include <lemon/core.h> |
| 23 | #include <lemon/concept_check.h> |
| 24 | |
22 | 25 | namespace lemon { |
23 | 26 | |
24 | 27 | template <typename _Digraph, typename _PredMap> |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/solver_bits.h
a
|
b
|
|
19 | 19 | #ifndef LEMON_BITS_SOLVER_BITS_H |
20 | 20 | #define LEMON_BITS_SOLVER_BITS_H |
21 | 21 | |
| 22 | #include <vector> |
| 23 | |
22 | 24 | namespace lemon { |
23 | 25 | |
24 | 26 | namespace _solver_bits { |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/concepts/heap.h
a
|
b
|
|
24 | 24 | #define LEMON_CONCEPT_HEAP_H |
25 | 25 | |
26 | 26 | #include <lemon/core.h> |
| 27 | #include <lemon/concept_check.h> |
27 | 28 | |
28 | 29 | namespace lemon { |
29 | 30 | |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/elevator.h
a
|
b
|
|
27 | 27 | ///for labeling items in push-relabel type algorithms. |
28 | 28 | /// |
29 | 29 | |
| 30 | #include <lemon/core.h> |
30 | 31 | #include <lemon/bits/traits.h> |
31 | 32 | |
32 | 33 | namespace lemon { |
diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/suurballe.h
a
|
b
|
|
27 | 27 | #include <vector> |
28 | 28 | #include <lemon/bin_heap.h> |
29 | 29 | #include <lemon/path.h> |
| 30 | #include <lemon/list_graph.h> |
| 31 | #include <lemon/maps.h> |
30 | 32 | |
31 | 33 | namespace lemon { |
32 | 34 | |