Fix several missing includes (#232)
authorBalazs Dezso <deba@inf.elte.hu>
Mon, 23 Feb 2009 11:58:39 +0100
changeset 519c786cd201266
parent 518 8668e1b5dafb
child 520 42d4b889903a
Fix several missing includes (#232)
lemon/adaptors.h
lemon/bits/edge_set_extender.h
lemon/bits/path_dump.h
lemon/bits/solver_bits.h
lemon/concepts/heap.h
lemon/elevator.h
lemon/suurballe.h
     1.1 --- a/lemon/adaptors.h	Sun Feb 22 09:52:44 2009 +0000
     1.2 +++ b/lemon/adaptors.h	Mon Feb 23 11:58:39 2009 +0100
     1.3 @@ -30,6 +30,7 @@
     1.4  #include <lemon/bits/variant.h>
     1.5  
     1.6  #include <lemon/bits/graph_adaptor_extender.h>
     1.7 +#include <lemon/bits/map_extender.h>
     1.8  #include <lemon/tolerance.h>
     1.9  
    1.10  #include <algorithm>
     2.1 --- a/lemon/bits/edge_set_extender.h	Sun Feb 22 09:52:44 2009 +0000
     2.2 +++ b/lemon/bits/edge_set_extender.h	Mon Feb 23 11:58:39 2009 +0100
     2.3 @@ -19,8 +19,10 @@
     2.4  #ifndef LEMON_BITS_EDGE_SET_EXTENDER_H
     2.5  #define LEMON_BITS_EDGE_SET_EXTENDER_H
     2.6  
     2.7 +#include <lemon/core.h>
     2.8  #include <lemon/error.h>
     2.9  #include <lemon/bits/default_map.h>
    2.10 +#include <lemon/bits/map_extender.h>
    2.11  
    2.12  ///\ingroup digraphbits
    2.13  ///\file
     3.1 --- a/lemon/bits/path_dump.h	Sun Feb 22 09:52:44 2009 +0000
     3.2 +++ b/lemon/bits/path_dump.h	Mon Feb 23 11:58:39 2009 +0100
     3.3 @@ -19,6 +19,9 @@
     3.4  #ifndef LEMON_BITS_PRED_MAP_PATH_H
     3.5  #define LEMON_BITS_PRED_MAP_PATH_H
     3.6  
     3.7 +#include <lemon/core.h>
     3.8 +#include <lemon/concept_check.h>
     3.9 +
    3.10  namespace lemon {
    3.11  
    3.12    template <typename _Digraph, typename _PredMap>
     4.1 --- a/lemon/bits/solver_bits.h	Sun Feb 22 09:52:44 2009 +0000
     4.2 +++ b/lemon/bits/solver_bits.h	Mon Feb 23 11:58:39 2009 +0100
     4.3 @@ -19,6 +19,8 @@
     4.4  #ifndef LEMON_BITS_SOLVER_BITS_H
     4.5  #define LEMON_BITS_SOLVER_BITS_H
     4.6  
     4.7 +#include <vector>
     4.8 +
     4.9  namespace lemon {
    4.10  
    4.11    namespace _solver_bits {
     5.1 --- a/lemon/concepts/heap.h	Sun Feb 22 09:52:44 2009 +0000
     5.2 +++ b/lemon/concepts/heap.h	Mon Feb 23 11:58:39 2009 +0100
     5.3 @@ -24,6 +24,7 @@
     5.4  #define LEMON_CONCEPT_HEAP_H
     5.5  
     5.6  #include <lemon/core.h>
     5.7 +#include <lemon/concept_check.h>
     5.8  
     5.9  namespace lemon {
    5.10  
     6.1 --- a/lemon/elevator.h	Sun Feb 22 09:52:44 2009 +0000
     6.2 +++ b/lemon/elevator.h	Mon Feb 23 11:58:39 2009 +0100
     6.3 @@ -27,6 +27,7 @@
     6.4  ///for labeling items in push-relabel type algorithms.
     6.5  ///
     6.6  
     6.7 +#include <lemon/core.h>
     6.8  #include <lemon/bits/traits.h>
     6.9  
    6.10  namespace lemon {
     7.1 --- a/lemon/suurballe.h	Sun Feb 22 09:52:44 2009 +0000
     7.2 +++ b/lemon/suurballe.h	Mon Feb 23 11:58:39 2009 +0100
     7.3 @@ -27,6 +27,8 @@
     7.4  #include <vector>
     7.5  #include <lemon/bin_heap.h>
     7.6  #include <lemon/path.h>
     7.7 +#include <lemon/list_graph.h>
     7.8 +#include <lemon/maps.h>
     7.9  
    7.10  namespace lemon {
    7.11