COIN-OR::LEMON - Graph Library

Ticket #232: f1f6cc37de04.patch

File f1f6cc37de04.patch, 2.7 KB (added by Balazs Dezso, 16 years ago)
  • lemon/adaptors.h

    # 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  
    3030#include <lemon/bits/variant.h>
    3131
    3232#include <lemon/bits/graph_adaptor_extender.h>
     33#include <lemon/bits/map_extender.h>
    3334#include <lemon/tolerance.h>
    3435
    3536#include <algorithm>
  • lemon/bits/edge_set_extender.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/edge_set_extender.h
    a b  
    1919#ifndef LEMON_BITS_EDGE_SET_EXTENDER_H
    2020#define LEMON_BITS_EDGE_SET_EXTENDER_H
    2121
     22#include <lemon/core.h>
    2223#include <lemon/error.h>
    2324#include <lemon/bits/default_map.h>
     25#include <lemon/bits/map_extender.h>
    2426
    2527///\ingroup digraphbits
    2628///\file
  • lemon/bits/path_dump.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/path_dump.h
    a b  
    1919#ifndef LEMON_BITS_PRED_MAP_PATH_H
    2020#define LEMON_BITS_PRED_MAP_PATH_H
    2121
     22#include <lemon/core.h>
     23#include <lemon/concept_check.h>
     24
    2225namespace lemon {
    2326
    2427  template <typename _Digraph, typename _PredMap>
  • lemon/bits/solver_bits.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/bits/solver_bits.h
    a b  
    1919#ifndef LEMON_BITS_SOLVER_BITS_H
    2020#define LEMON_BITS_SOLVER_BITS_H
    2121
     22#include <vector>
     23
    2224namespace lemon {
    2325
    2426  namespace _solver_bits {
  • lemon/concepts/heap.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/concepts/heap.h
    a b  
    2424#define LEMON_CONCEPT_HEAP_H
    2525
    2626#include <lemon/core.h>
     27#include <lemon/concept_check.h>
    2728
    2829namespace lemon {
    2930
  • lemon/elevator.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/elevator.h
    a b  
    2727///for labeling items in push-relabel type algorithms.
    2828///
    2929
     30#include <lemon/core.h>
    3031#include <lemon/bits/traits.h>
    3132
    3233namespace lemon {
  • lemon/suurballe.h

    diff -r 2b6d5d22bb23 -r f1f6cc37de04 lemon/suurballe.h
    a b  
    2727#include <vector>
    2828#include <lemon/bin_heap.h>
    2929#include <lemon/path.h>
     30#include <lemon/list_graph.h>
     31#include <lemon/maps.h>
    3032
    3133namespace lemon {
    3234