COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/bits


Ignore:
Timestamp:
10/24/06 19:19:16 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

Location:
lemon/bits
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/array_map.h

    r2202 r2260  
    2525#include <lemon/bits/alteration_notifier.h>
    2626#include <lemon/concept_check.h>
    27 #include <lemon/concept/maps.h>
     27#include <lemon/concepts/maps.h>
    2828
    2929/// \ingroup graphbits
     
    142142    template <typename CMap>
    143143    ArrayMap& operator=(const CMap& cmap) {
    144       checkConcept<concept::ReadMap<Key, _Value>, CMap>();
     144      checkConcept<concepts::ReadMap<Key, _Value>, CMap>();
    145145      const typename Parent::Notifier* notifier = Parent::getNotifier();
    146146      Item it;
  • lemon/bits/base_extender.h

    r2231 r2260  
    2727
    2828#include <lemon/concept_check.h>
    29 #include <lemon/concept/maps.h>
     29#include <lemon/concepts/maps.h>
    3030
    3131///\ingroup graphbits
  • lemon/bits/debug_map.h

    r2202 r2260  
    3030
    3131#include <lemon/concept_check.h>
    32 #include <lemon/concept/maps.h>
     32#include <lemon/concepts/maps.h>
    3333
    3434///\ingroup graphbits
     
    187187    template <typename CMap>
    188188    DebugMap& operator=(const CMap& cmap) {
    189       checkConcept<concept::ReadMap<Key, _Value>, CMap>();
     189      checkConcept<concepts::ReadMap<Key, _Value>, CMap>();
    190190      const typename Parent::Notifier* notifier = Parent::getNotifier();
    191191      Item it;
  • lemon/bits/graph_extender.h

    r2231 r2260  
    2727
    2828#include <lemon/concept_check.h>
    29 #include <lemon/concept/maps.h>
     29#include <lemon/concepts/maps.h>
    3030
    3131///\ingroup graphbits
     
    11291129      template <typename CMap>
    11301130      NodeMap& operator=(const CMap& cmap) {
    1131         checkConcept<concept::ReadMap<Node, _Value>, CMap>();
     1131        checkConcept<concepts::ReadMap<Node, _Value>, CMap>();
    11321132        aNodeMap = cmap;
    11331133        bNodeMap = cmap;
  • lemon/bits/map_extender.h

    r2031 r2260  
    2525
    2626#include <lemon/concept_check.h>
    27 #include <lemon/concept/maps.h>
     27#include <lemon/concepts/maps.h>
    2828
    2929///\file
     
    207207    template <typename CMap>
    208208    SubMapExtender& operator=(const CMap& cmap) {
    209       checkConcept<concept::ReadMap<Key, Value>, CMap>();
     209      checkConcept<concepts::ReadMap<Key, Value>, CMap>();
    210210      Item it;
    211211      for (graph.first(it); it != INVALID; graph.next(it)) {
  • lemon/bits/vector_map.h

    r2202 r2260  
    2929
    3030#include <lemon/concept_check.h>
    31 #include <lemon/concept/maps.h>
     31#include <lemon/concepts/maps.h>
    3232
    3333///\ingroup graphbits
     
    134134    template <typename CMap>
    135135    VectorMap& operator=(const CMap& cmap) {
    136       checkConcept<concept::ReadMap<Key, _Value>, CMap>();
     136      checkConcept<concepts::ReadMap<Key, _Value>, CMap>();
    137137      const typename Parent::Notifier* notifier = Parent::getNotifier();
    138138      Item it;
Note: See TracChangeset for help on using the changeset viewer.