lemon/matrix_maps.h
changeset 2260 4274224f8a7d
parent 2088 68f8d17ced51
child 2305 4a2236cc98a0
     1.1 --- a/lemon/matrix_maps.h	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/lemon/matrix_maps.h	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -25,13 +25,13 @@
     1.4  #include <lemon/bits/invalid.h>
     1.5  #include <lemon/maps.h>
     1.6  
     1.7 -#include <lemon/concept/matrix_maps.h>
     1.8 +#include <lemon/concepts/matrix_maps.h>
     1.9  
    1.10  /// \file
    1.11  /// \ingroup matrices
    1.12  /// \brief Maps indexed with pairs of items.
    1.13  ///
    1.14 -/// \todo This file has the same name as the concept file in concept/,
    1.15 +/// \todo This file has the same name as the concept file in concepts/,
    1.16  ///  and this is not easily detectable in docs...
    1.17  namespace lemon {
    1.18  
    1.19 @@ -295,7 +295,7 @@
    1.20      ///type of the two map shall be the same.
    1.21      template <typename CMap>
    1.22      DynamicMatrixMap& operator=(const CMap& _cmap){
    1.23 -      checkConcept<concept::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.24 +      checkConcept<concepts::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.25        typename Parent::Notifier* notifier = Parent::getNotifier();
    1.26        Key first, second;
    1.27        for(notifier->first(first); first != INVALID; 
    1.28 @@ -432,7 +432,7 @@
    1.29      ///type of the two map shall be the same.
    1.30      template <typename CMap>
    1.31      DynamicSymMatrixMap& operator=(const CMap& _cmap){
    1.32 -      checkConcept<concept::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.33 +      checkConcept<concepts::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.34        typename Parent::Notifier* notifier = Parent::getNotifier();
    1.35        Key first, second;
    1.36        for(notifier->first(first); first != INVALID; 
    1.37 @@ -519,7 +519,7 @@
    1.38    ///content change, so it is updated automaticly whenever it is
    1.39    ///needed.
    1.40    ///
    1.41 -  ///This map meet with the concept::ReferenceMatrixMap<typename K1,
    1.42 +  ///This map meet with the concepts::ReferenceMatrixMap<typename K1,
    1.43    ///typename K2, typename V, typename R, typename CR> called as
    1.44    ///"ReferenceMatrixMap".
    1.45    ///
    1.46 @@ -860,7 +860,7 @@
    1.47      ///type of the two map shall be the same.
    1.48      template <typename CMap>
    1.49      DynamicAsymMatrixMap& operator=(const CMap& _cdmap){
    1.50 -      checkConcept<concept::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.51 +      checkConcept<concepts::ReadMatrixMap<FirstKey, SecondKey, Value>, CMap>();
    1.52        const typename FirstKeyProxy::Notifier* notifierFirstKey = 
    1.53          _first_key_proxy.getNotifier();
    1.54        const typename SecondKeyProxy::Notifier* notifierSecondKey =