| 
alpar@906
 | 
     1  | 
/* -*- C++ -*-
  | 
| 
alpar@921
 | 
     2  | 
 * src/lemon/maps.h - Part of LEMON, a generic C++ optimization library
  | 
| 
alpar@906
 | 
     3  | 
 *
  | 
| 
alpar@906
 | 
     4  | 
 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  | 
| 
alpar@906
 | 
     5  | 
 * (Egervary Combinatorial Optimization Research Group, EGRES).
  | 
| 
alpar@906
 | 
     6  | 
 *
  | 
| 
alpar@906
 | 
     7  | 
 * Permission to use, modify and distribute this software is granted
  | 
| 
alpar@906
 | 
     8  | 
 * provided that this copyright notice appears in all copies. For
  | 
| 
alpar@906
 | 
     9  | 
 * precise terms see the accompanying LICENSE file.
  | 
| 
alpar@906
 | 
    10  | 
 *
  | 
| 
alpar@906
 | 
    11  | 
 * This software is provided "AS IS" with no warranty of any kind,
  | 
| 
alpar@906
 | 
    12  | 
 * express or implied, and with no claim as to its suitability for any
  | 
| 
alpar@906
 | 
    13  | 
 * purpose.
  | 
| 
alpar@906
 | 
    14  | 
 *
  | 
| 
alpar@906
 | 
    15  | 
 */
  | 
| 
alpar@906
 | 
    16  | 
  | 
| 
alpar@921
 | 
    17  | 
#ifndef LEMON_MAPS_H
  | 
| 
alpar@921
 | 
    18  | 
#define LEMON_MAPS_H
  | 
| 
klao@286
 | 
    19  | 
  | 
| 
alpar@1041
 | 
    20  | 
#include<math.h>
  | 
| 
alpar@1041
 | 
    21  | 
  | 
| 
klao@286
 | 
    22  | 
///\file
  | 
| 
alpar@1041
 | 
    23  | 
///\ingroup maps
  | 
| 
klao@286
 | 
    24  | 
///\brief Miscellaneous property maps
  | 
| 
klao@286
 | 
    25  | 
///
  | 
| 
klao@959
 | 
    26  | 
///\todo This file has the same name as the concept file in concept/,
  | 
| 
klao@286
 | 
    27  | 
/// and this is not easily detectable in docs...
  | 
| 
klao@286
 | 
    28  | 
  | 
| 
klao@286
 | 
    29  | 
#include <map>
  | 
| 
klao@286
 | 
    30  | 
  | 
| 
alpar@921
 | 
    31  | 
namespace lemon {
 | 
| 
klao@286
 | 
    32  | 
  | 
| 
alpar@1041
 | 
    33  | 
  /// \addtogroup maps
  | 
| 
alpar@1041
 | 
    34  | 
  /// @{
 | 
| 
alpar@1041
 | 
    35  | 
  | 
| 
alpar@720
 | 
    36  | 
  /// Base class of maps.
  | 
| 
alpar@720
 | 
    37  | 
  | 
| 
alpar@805
 | 
    38  | 
  /// Base class of maps.
  | 
| 
alpar@805
 | 
    39  | 
  /// It provides the necessary <tt>typedef</tt>s required by the map concept.
  | 
| 
alpar@720
 | 
    40  | 
  template<typename K, typename T>
  | 
| 
alpar@720
 | 
    41  | 
  class MapBase
  | 
| 
alpar@720
 | 
    42  | 
  {
 | 
| 
alpar@720
 | 
    43  | 
  public:
  | 
| 
alpar@911
 | 
    44  | 
    ///\e
  | 
| 
alpar@987
 | 
    45  | 
    typedef K Key;
  | 
| 
alpar@911
 | 
    46  | 
    ///\e
  | 
| 
alpar@987
 | 
    47  | 
    typedef T Value;
  | 
| 
alpar@720
 | 
    48  | 
  };
  | 
| 
alpar@720
 | 
    49  | 
  | 
| 
alpar@805
 | 
    50  | 
  /// Null map. (a.k.a. DoNothingMap)
  | 
| 
klao@286
 | 
    51  | 
  | 
| 
klao@286
 | 
    52  | 
  /// If you have to provide a map only for its type definitions,
  | 
| 
alpar@805
 | 
    53  | 
  /// or if you have to provide a writable map, but
  | 
| 
alpar@805
 | 
    54  | 
  /// data written to it will sent to <tt>/dev/null</tt>...
  | 
| 
klao@286
 | 
    55  | 
  template<typename K, typename T>
  | 
| 
alpar@720
 | 
    56  | 
  class NullMap : public MapBase<K,T>
  | 
| 
klao@286
 | 
    57  | 
  {
 | 
| 
klao@286
 | 
    58  | 
  public:
  | 
| 
klao@286
 | 
    59  | 
  | 
| 
alpar@805
 | 
    60  | 
    /// Gives back a default constructed element.
  | 
| 
klao@286
 | 
    61  | 
    T operator[](const K&) const { return T(); }
 | 
| 
alpar@805
 | 
    62  | 
    /// Absorbs the value.
  | 
| 
klao@286
 | 
    63  | 
    void set(const K&, const T&) {}
 | 
| 
klao@286
 | 
    64  | 
  };
  | 
| 
klao@286
 | 
    65  | 
  | 
| 
klao@286
 | 
    66  | 
  | 
| 
klao@286
 | 
    67  | 
  /// Constant map.
  | 
| 
klao@286
 | 
    68  | 
  | 
| 
alpar@805
 | 
    69  | 
  /// This is a readable map which assigns a specified value to each key.
  | 
| 
alpar@805
 | 
    70  | 
  /// In other aspects it is equivalent to the \ref NullMap.
  | 
| 
alpar@805
 | 
    71  | 
  /// \todo set could be used to set the value.
  | 
| 
klao@286
 | 
    72  | 
  template<typename K, typename T>
  | 
| 
alpar@720
 | 
    73  | 
  class ConstMap : public MapBase<K,T>
  | 
| 
klao@286
 | 
    74  | 
  {
 | 
| 
klao@286
 | 
    75  | 
    T v;
  | 
| 
klao@286
 | 
    76  | 
  public:
  | 
| 
klao@286
 | 
    77  | 
  | 
| 
alpar@805
 | 
    78  | 
    /// Default constructor
  | 
| 
alpar@805
 | 
    79  | 
  | 
| 
alpar@805
 | 
    80  | 
    /// The value of the map will be uninitialized. 
  | 
| 
alpar@805
 | 
    81  | 
    /// (More exactly it will be default constructed.)
  | 
| 
klao@286
 | 
    82  | 
    ConstMap() {}
 | 
| 
alpar@911
 | 
    83  | 
    ///\e
  | 
| 
alpar@805
 | 
    84  | 
  | 
| 
alpar@805
 | 
    85  | 
    /// \param _v The initial value of the map.
  | 
| 
alpar@911
 | 
    86  | 
    ///
  | 
| 
klao@286
 | 
    87  | 
    ConstMap(const T &_v) : v(_v) {}
 | 
| 
klao@286
 | 
    88  | 
  | 
| 
klao@286
 | 
    89  | 
    T operator[](const K&) const { return v; }
 | 
| 
klao@286
 | 
    90  | 
    void set(const K&, const T&) {}
 | 
| 
klao@286
 | 
    91  | 
  | 
| 
klao@286
 | 
    92  | 
    template<typename T1>
  | 
| 
klao@286
 | 
    93  | 
    struct rebind {
 | 
| 
klao@286
 | 
    94  | 
      typedef ConstMap<K,T1> other;
  | 
| 
klao@286
 | 
    95  | 
    };
  | 
| 
klao@286
 | 
    96  | 
  | 
| 
klao@286
 | 
    97  | 
    template<typename T1>
  | 
| 
klao@286
 | 
    98  | 
    ConstMap(const ConstMap<K,T1> &, const T &_v) : v(_v) {}
 | 
| 
klao@286
 | 
    99  | 
  };
  | 
| 
klao@286
 | 
   100  | 
  | 
| 
alpar@1076
 | 
   101  | 
  ///Returns a \ref ConstMap class
  | 
| 
alpar@1076
 | 
   102  | 
  | 
| 
alpar@1076
 | 
   103  | 
  ///This function just returns a \ref ConstMap class.
  | 
| 
alpar@1076
 | 
   104  | 
  ///\relates ConstMap
  | 
| 
alpar@1076
 | 
   105  | 
  template<class V,class K> 
  | 
| 
alpar@1076
 | 
   106  | 
  inline ConstMap<V,K> constMap(const K &k) 
  | 
| 
alpar@1076
 | 
   107  | 
  {
 | 
| 
alpar@1076
 | 
   108  | 
    return ConstMap<V,K>(k);
  | 
| 
alpar@1076
 | 
   109  | 
  }
  | 
| 
alpar@1076
 | 
   110  | 
  | 
| 
alpar@1076
 | 
   111  | 
  | 
| 
marci@890
 | 
   112  | 
  //to document later
  | 
| 
marci@890
 | 
   113  | 
  template<typename T, T v>
  | 
| 
marci@890
 | 
   114  | 
  struct Const { };
 | 
| 
marci@890
 | 
   115  | 
  //to document later
  | 
| 
marci@890
 | 
   116  | 
  template<typename K, typename V, V v>
  | 
| 
marci@890
 | 
   117  | 
  class ConstMap<K, Const<V, v> > : public MapBase<K, V>
  | 
| 
marci@890
 | 
   118  | 
  {
 | 
| 
marci@890
 | 
   119  | 
  public:
  | 
| 
marci@890
 | 
   120  | 
    ConstMap() { }
 | 
| 
marci@890
 | 
   121  | 
    V operator[](const K&) const { return v; }
 | 
| 
marci@890
 | 
   122  | 
    void set(const K&, const V&) { }
 | 
| 
marci@890
 | 
   123  | 
  };
  | 
| 
klao@286
 | 
   124  | 
  | 
| 
klao@286
 | 
   125  | 
  /// \c std::map wrapper
  | 
| 
klao@286
 | 
   126  | 
  | 
| 
klao@286
 | 
   127  | 
  /// This is essentially a wrapper for \c std::map. With addition that
  | 
| 
alpar@987
 | 
   128  | 
  /// you can specify a default value different from \c Value() .
  | 
| 
klao@286
 | 
   129  | 
  ///
  | 
| 
klao@286
 | 
   130  | 
  /// \todo Provide allocator parameter...
  | 
| 
alpar@987
 | 
   131  | 
  template <typename K, typename T, typename Compare = std::less<K> >
  | 
| 
alpar@987
 | 
   132  | 
  class StdMap : public std::map<K,T,Compare> {
 | 
| 
alpar@987
 | 
   133  | 
    typedef std::map<K,T,Compare> parent;
  | 
| 
klao@286
 | 
   134  | 
    T v;
  | 
| 
klao@286
 | 
   135  | 
    typedef typename parent::value_type PairType;
  | 
| 
klao@286
 | 
   136  | 
  | 
| 
klao@286
 | 
   137  | 
  public:
  | 
| 
alpar@987
 | 
   138  | 
    typedef K Key;
  | 
| 
alpar@987
 | 
   139  | 
    typedef T Value;
  | 
| 
alpar@987
 | 
   140  | 
    typedef T& Reference;
  | 
| 
alpar@987
 | 
   141  | 
    typedef const T& ConstReference;
  | 
| 
klao@286
 | 
   142  | 
  | 
| 
klao@286
 | 
   143  | 
  | 
| 
klao@345
 | 
   144  | 
    StdMap() : v() {}
 | 
| 
klao@286
 | 
   145  | 
    /// Constructor with specified default value
  | 
| 
klao@286
 | 
   146  | 
    StdMap(const T& _v) : v(_v) {}
 | 
| 
klao@286
 | 
   147  | 
  | 
| 
klao@286
 | 
   148  | 
    /// \brief Constructs the map from an appropriate std::map.
  | 
| 
klao@286
 | 
   149  | 
    ///
  | 
| 
klao@286
 | 
   150  | 
    /// \warning Inefficient: copies the content of \c m !
  | 
| 
klao@286
 | 
   151  | 
    StdMap(const parent &m) : parent(m) {}
 | 
| 
klao@286
 | 
   152  | 
    /// \brief Constructs the map from an appropriate std::map, and explicitly
  | 
| 
klao@286
 | 
   153  | 
    /// specifies a default value.
  | 
| 
klao@286
 | 
   154  | 
    ///
  | 
| 
klao@286
 | 
   155  | 
    /// \warning Inefficient: copies the content of \c m !
  | 
| 
klao@286
 | 
   156  | 
    StdMap(const parent &m, const T& _v) : parent(m), v(_v) {}
 | 
| 
klao@286
 | 
   157  | 
    
  | 
| 
klao@286
 | 
   158  | 
    template<typename T1, typename Comp1>
  | 
| 
marci@389
 | 
   159  | 
    StdMap(const StdMap<Key,T1,Comp1> &m, const T &_v) { 
 | 
| 
marci@389
 | 
   160  | 
      //FIXME; 
  | 
| 
marci@389
 | 
   161  | 
    }
  | 
| 
klao@286
 | 
   162  | 
  | 
| 
alpar@987
 | 
   163  | 
    Reference operator[](const Key &k) {
 | 
| 
klao@346
 | 
   164  | 
      return insert(PairType(k,v)).first -> second;
  | 
| 
klao@286
 | 
   165  | 
    }
  | 
| 
alpar@987
 | 
   166  | 
    ConstReference operator[](const Key &k) const {
 | 
| 
marci@389
 | 
   167  | 
      typename parent::iterator i = lower_bound(k);
  | 
| 
beckerjc@391
 | 
   168  | 
      if (i == parent::end() || parent::key_comp()(k, (*i).first))
  | 
| 
klao@286
 | 
   169  | 
	return v;
  | 
| 
klao@286
 | 
   170  | 
      return (*i).second;
  | 
| 
klao@286
 | 
   171  | 
    }
  | 
| 
klao@345
 | 
   172  | 
    void set(const Key &k, const T &t) {
 | 
| 
klao@346
 | 
   173  | 
      parent::operator[](k) = t;
  | 
| 
klao@345
 | 
   174  | 
    }
  | 
| 
klao@286
 | 
   175  | 
  | 
| 
klao@286
 | 
   176  | 
    /// Changes the default value of the map.
  | 
| 
klao@286
 | 
   177  | 
    /// \return Returns the previous default value.
  | 
| 
klao@286
 | 
   178  | 
    ///
  | 
| 
alpar@805
 | 
   179  | 
    /// \warning The value of some keys (which has already been queried, but
  | 
| 
klao@286
 | 
   180  | 
    /// the value has been unchanged from the default) may change!
  | 
| 
klao@286
 | 
   181  | 
    T setDefault(const T &_v) { T old=v; v=_v; return old; }
 | 
| 
klao@286
 | 
   182  | 
  | 
| 
klao@286
 | 
   183  | 
    template<typename T1>
  | 
| 
klao@286
 | 
   184  | 
    struct rebind {
 | 
| 
klao@286
 | 
   185  | 
      typedef StdMap<Key,T1,Compare> other;
  | 
| 
klao@286
 | 
   186  | 
    };
  | 
| 
klao@286
 | 
   187  | 
  };
  | 
| 
alpar@1041
 | 
   188  | 
  | 
| 
alpar@1041
 | 
   189  | 
  | 
| 
alpar@1041
 | 
   190  | 
  ///Sum of two maps
  | 
| 
alpar@1041
 | 
   191  | 
  | 
| 
alpar@1041
 | 
   192  | 
  ///This \ref concept::ReadMap "read only map" returns the sum of the two
  | 
| 
alpar@1041
 | 
   193  | 
  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
  | 
| 
alpar@1041
 | 
   194  | 
  ///The \c Key and \c Value of M2 must be convertible to those of \c M1.
  | 
| 
alpar@1041
 | 
   195  | 
  | 
| 
alpar@1041
 | 
   196  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   197  | 
  class AddMap
  | 
| 
alpar@1041
 | 
   198  | 
  {
 | 
| 
alpar@1041
 | 
   199  | 
    const M1 &m1;
  | 
| 
alpar@1041
 | 
   200  | 
    const M2 &m2;
  | 
| 
alpar@1041
 | 
   201  | 
  public:
  | 
| 
alpar@1041
 | 
   202  | 
    typedef typename M1::Key Key;
  | 
| 
alpar@1041
 | 
   203  | 
    typedef typename M1::Value Value;
  | 
| 
alpar@1041
 | 
   204  | 
  | 
| 
alpar@1041
 | 
   205  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   206  | 
  | 
| 
alpar@1041
 | 
   207  | 
    ///\e
  | 
| 
alpar@1041
 | 
   208  | 
    ///
  | 
| 
alpar@1041
 | 
   209  | 
    AddMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
 | 
| 
alpar@1044
 | 
   210  | 
    Value operator[](Key k) const {return m1[k]+m2[k];}
 | 
| 
alpar@1041
 | 
   211  | 
  };
  | 
| 
alpar@1041
 | 
   212  | 
  
  | 
| 
alpar@1041
 | 
   213  | 
  ///Returns an \ref AddMap class
  | 
| 
alpar@1041
 | 
   214  | 
  | 
| 
alpar@1041
 | 
   215  | 
  ///This function just returns an \ref AddMap class.
  | 
| 
alpar@1041
 | 
   216  | 
  ///\todo How to call these type of functions?
  | 
| 
alpar@1041
 | 
   217  | 
  ///
  | 
| 
alpar@1041
 | 
   218  | 
  ///\relates AddMap
  | 
| 
alpar@1041
 | 
   219  | 
  ///\todo Wrong scope in Doxygen when \c \\relates is used
  | 
| 
alpar@1041
 | 
   220  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   221  | 
  inline AddMap<M1,M2> addMap(const M1 &m1,const M2 &m2) 
  | 
| 
alpar@1041
 | 
   222  | 
  {
 | 
| 
alpar@1041
 | 
   223  | 
    return AddMap<M1,M2>(m1,m2);
  | 
| 
alpar@1041
 | 
   224  | 
  }
  | 
| 
alpar@1041
 | 
   225  | 
  | 
| 
alpar@1070
 | 
   226  | 
  ///Shift a maps with a constant.
  | 
| 
alpar@1070
 | 
   227  | 
  | 
| 
alpar@1070
 | 
   228  | 
  ///This \ref concept::ReadMap "read only map" returns the sum of the
  | 
| 
alpar@1070
 | 
   229  | 
  ///given map and a constant value.
  | 
| 
alpar@1070
 | 
   230  | 
  ///Its \c Key and \c Value is inherited from \c M.
  | 
| 
alpar@1070
 | 
   231  | 
  ///
  | 
| 
alpar@1070
 | 
   232  | 
  ///Actually,
  | 
| 
alpar@1070
 | 
   233  | 
  ///\code
  | 
| 
alpar@1070
 | 
   234  | 
  ///  ShiftMap<X> sh(x,v);
  | 
| 
alpar@1070
 | 
   235  | 
  ///\endcode
  | 
| 
alpar@1070
 | 
   236  | 
  ///it is equivalent with
  | 
| 
alpar@1070
 | 
   237  | 
  ///\code
  | 
| 
alpar@1070
 | 
   238  | 
  ///  ConstMap<X::Key, X::Value> c_tmp(v);
  | 
| 
alpar@1070
 | 
   239  | 
  ///  AddMap<X, ConstMap<X::Key, X::Value> > sh(x,v);
  | 
| 
alpar@1070
 | 
   240  | 
  ///\endcode
  | 
| 
alpar@1070
 | 
   241  | 
  template<class M> 
  | 
| 
alpar@1070
 | 
   242  | 
  class ShiftMap
  | 
| 
alpar@1070
 | 
   243  | 
  {
 | 
| 
alpar@1070
 | 
   244  | 
    const M &m;
  | 
| 
alpar@1070
 | 
   245  | 
    typename M::Value v;
  | 
| 
alpar@1070
 | 
   246  | 
  public:
  | 
| 
alpar@1070
 | 
   247  | 
    typedef typename M::Key Key;
  | 
| 
alpar@1070
 | 
   248  | 
    typedef typename M::Value Value;
  | 
| 
alpar@1070
 | 
   249  | 
  | 
| 
alpar@1070
 | 
   250  | 
    ///Constructor
  | 
| 
alpar@1070
 | 
   251  | 
  | 
| 
alpar@1070
 | 
   252  | 
    ///Constructor
  | 
| 
alpar@1070
 | 
   253  | 
    ///\param _m is the undelying map
  | 
| 
alpar@1070
 | 
   254  | 
    ///\param _v is the shift value
  | 
| 
alpar@1070
 | 
   255  | 
    ShiftMap(const M &_m,const Value &_v ) : m(_m), v(_v) {};
 | 
| 
alpar@1070
 | 
   256  | 
    Value operator[](Key k) const {return m[k]+v;}
 | 
| 
alpar@1070
 | 
   257  | 
  };
  | 
| 
alpar@1070
 | 
   258  | 
  
  | 
| 
alpar@1070
 | 
   259  | 
  ///Returns an \ref ShiftMap class
  | 
| 
alpar@1070
 | 
   260  | 
  | 
| 
alpar@1070
 | 
   261  | 
  ///This function just returns an \ref ShiftMap class.
  | 
| 
alpar@1070
 | 
   262  | 
  ///\relates ShiftMap
  | 
| 
alpar@1070
 | 
   263  | 
  ///\todo A better name is required.
  | 
| 
alpar@1070
 | 
   264  | 
  template<class M> 
  | 
| 
alpar@1070
 | 
   265  | 
  inline ShiftMap<M> shiftMap(const M &m,const typename M::Value &v) 
  | 
| 
alpar@1070
 | 
   266  | 
  {
 | 
| 
alpar@1070
 | 
   267  | 
    return ShiftMap<M>(m,v);
  | 
| 
alpar@1070
 | 
   268  | 
  }
  | 
| 
alpar@1070
 | 
   269  | 
  | 
| 
alpar@1041
 | 
   270  | 
  ///Difference of two maps
  | 
| 
alpar@1041
 | 
   271  | 
  | 
| 
alpar@1041
 | 
   272  | 
  ///This \ref concept::ReadMap "read only map" returns the difference
  | 
| 
alpar@1041
 | 
   273  | 
  ///of the values returned by the two
  | 
| 
alpar@1041
 | 
   274  | 
  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
  | 
| 
alpar@1041
 | 
   275  | 
  ///The \c Key and \c Value of \c M2 must be convertible to those of \c M1.
  | 
| 
alpar@1041
 | 
   276  | 
  | 
| 
alpar@1041
 | 
   277  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   278  | 
  class SubMap
  | 
| 
alpar@1041
 | 
   279  | 
  {
 | 
| 
alpar@1041
 | 
   280  | 
    const M1 &m1;
  | 
| 
alpar@1041
 | 
   281  | 
    const M2 &m2;
  | 
| 
alpar@1041
 | 
   282  | 
  public:
  | 
| 
alpar@1041
 | 
   283  | 
    typedef typename M1::Key Key;
  | 
| 
alpar@1041
 | 
   284  | 
    typedef typename M1::Value Value;
  | 
| 
alpar@1041
 | 
   285  | 
  | 
| 
alpar@1041
 | 
   286  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   287  | 
  | 
| 
alpar@1041
 | 
   288  | 
    ///\e
  | 
| 
alpar@1041
 | 
   289  | 
    ///
  | 
| 
alpar@1041
 | 
   290  | 
    SubMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
 | 
| 
alpar@1044
 | 
   291  | 
    Value operator[](Key k) const {return m1[k]-m2[k];}
 | 
| 
alpar@1041
 | 
   292  | 
  };
  | 
| 
alpar@1041
 | 
   293  | 
  
  | 
| 
alpar@1041
 | 
   294  | 
  ///Returns a \ref SubMap class
  | 
| 
alpar@1041
 | 
   295  | 
  | 
| 
alpar@1041
 | 
   296  | 
  ///This function just returns a \ref SubMap class.
  | 
| 
alpar@1041
 | 
   297  | 
  ///
  | 
| 
alpar@1041
 | 
   298  | 
  ///\relates SubMap
  | 
| 
alpar@1041
 | 
   299  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   300  | 
  inline SubMap<M1,M2> subMap(const M1 &m1,const M2 &m2) 
  | 
| 
alpar@1041
 | 
   301  | 
  {
 | 
| 
alpar@1041
 | 
   302  | 
    return SubMap<M1,M2>(m1,m2);
  | 
| 
alpar@1041
 | 
   303  | 
  }
  | 
| 
alpar@1041
 | 
   304  | 
  | 
| 
alpar@1041
 | 
   305  | 
  ///Product of two maps
  | 
| 
alpar@1041
 | 
   306  | 
  | 
| 
alpar@1041
 | 
   307  | 
  ///This \ref concept::ReadMap "read only map" returns the product of the
  | 
| 
alpar@1041
 | 
   308  | 
  ///values returned by the two
  | 
| 
alpar@1041
 | 
   309  | 
  ///given
  | 
| 
alpar@1041
 | 
   310  | 
  ///maps. Its \c Key and \c Value will be inherited from \c M1.
  | 
| 
alpar@1041
 | 
   311  | 
  ///The \c Key and \c Value of \c M2 must be convertible to those of \c M1.
  | 
| 
alpar@1041
 | 
   312  | 
  | 
| 
alpar@1041
 | 
   313  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   314  | 
  class MulMap
  | 
| 
alpar@1041
 | 
   315  | 
  {
 | 
| 
alpar@1041
 | 
   316  | 
    const M1 &m1;
  | 
| 
alpar@1041
 | 
   317  | 
    const M2 &m2;
  | 
| 
alpar@1041
 | 
   318  | 
  public:
  | 
| 
alpar@1041
 | 
   319  | 
    typedef typename M1::Key Key;
  | 
| 
alpar@1041
 | 
   320  | 
    typedef typename M1::Value Value;
  | 
| 
alpar@1041
 | 
   321  | 
  | 
| 
alpar@1041
 | 
   322  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   323  | 
  | 
| 
alpar@1041
 | 
   324  | 
    ///\e
  | 
| 
alpar@1041
 | 
   325  | 
    ///
  | 
| 
alpar@1041
 | 
   326  | 
    MulMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
 | 
| 
alpar@1044
 | 
   327  | 
    Value operator[](Key k) const {return m1[k]*m2[k];}
 | 
| 
alpar@1041
 | 
   328  | 
  };
  | 
| 
alpar@1041
 | 
   329  | 
  
  | 
| 
alpar@1041
 | 
   330  | 
  ///Returns a \ref MulMap class
  | 
| 
alpar@1041
 | 
   331  | 
  | 
| 
alpar@1041
 | 
   332  | 
  ///This function just returns a \ref MulMap class.
  | 
| 
alpar@1041
 | 
   333  | 
  ///\relates MulMap
  | 
| 
alpar@1041
 | 
   334  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   335  | 
  inline MulMap<M1,M2> mulMap(const M1 &m1,const M2 &m2) 
  | 
| 
alpar@1041
 | 
   336  | 
  {
 | 
| 
alpar@1041
 | 
   337  | 
    return MulMap<M1,M2>(m1,m2);
  | 
| 
alpar@1041
 | 
   338  | 
  }
  | 
| 
alpar@1041
 | 
   339  | 
 
  | 
| 
alpar@1070
 | 
   340  | 
  ///Scale a maps with a constant.
  | 
| 
alpar@1070
 | 
   341  | 
  | 
| 
alpar@1070
 | 
   342  | 
  ///This \ref concept::ReadMap "read only map" returns the value of the
  | 
| 
alpar@1070
 | 
   343  | 
  ///given map multipied with a constant value.
  | 
| 
alpar@1070
 | 
   344  | 
  ///Its \c Key and \c Value is inherited from \c M.
  | 
| 
alpar@1070
 | 
   345  | 
  ///
  | 
| 
alpar@1070
 | 
   346  | 
  ///Actually,
  | 
| 
alpar@1070
 | 
   347  | 
  ///\code
  | 
| 
alpar@1070
 | 
   348  | 
  ///  ScaleMap<X> sc(x,v);
  | 
| 
alpar@1070
 | 
   349  | 
  ///\endcode
  | 
| 
alpar@1070
 | 
   350  | 
  ///it is equivalent with
  | 
| 
alpar@1070
 | 
   351  | 
  ///\code
  | 
| 
alpar@1070
 | 
   352  | 
  ///  ConstMap<X::Key, X::Value> c_tmp(v);
  | 
| 
alpar@1070
 | 
   353  | 
  ///  MulMap<X, ConstMap<X::Key, X::Value> > sc(x,v);
  | 
| 
alpar@1070
 | 
   354  | 
  ///\endcode
  | 
| 
alpar@1070
 | 
   355  | 
  template<class M> 
  | 
| 
alpar@1070
 | 
   356  | 
  class ScaleMap
  | 
| 
alpar@1070
 | 
   357  | 
  {
 | 
| 
alpar@1070
 | 
   358  | 
    const M &m;
  | 
| 
alpar@1070
 | 
   359  | 
    typename M::Value v;
  | 
| 
alpar@1070
 | 
   360  | 
  public:
  | 
| 
alpar@1070
 | 
   361  | 
    typedef typename M::Key Key;
  | 
| 
alpar@1070
 | 
   362  | 
    typedef typename M::Value Value;
  | 
| 
alpar@1070
 | 
   363  | 
  | 
| 
alpar@1070
 | 
   364  | 
    ///Constructor
  | 
| 
alpar@1070
 | 
   365  | 
  | 
| 
alpar@1070
 | 
   366  | 
    ///Constructor
  | 
| 
alpar@1070
 | 
   367  | 
    ///\param _m is the undelying map
  | 
| 
alpar@1070
 | 
   368  | 
    ///\param _v is the scaling value
  | 
| 
alpar@1070
 | 
   369  | 
    ScaleMap(const M &_m,const Value &_v ) : m(_m), v(_v) {};
 | 
| 
alpar@1070
 | 
   370  | 
    Value operator[](Key k) const {return m[k]*v;}
 | 
| 
alpar@1070
 | 
   371  | 
  };
  | 
| 
alpar@1070
 | 
   372  | 
  
  | 
| 
alpar@1070
 | 
   373  | 
  ///Returns an \ref ScaleMap class
  | 
| 
alpar@1070
 | 
   374  | 
  | 
| 
alpar@1070
 | 
   375  | 
  ///This function just returns an \ref ScaleMap class.
  | 
| 
alpar@1070
 | 
   376  | 
  ///\relates ScaleMap
  | 
| 
alpar@1070
 | 
   377  | 
  ///\todo A better name is required.
  | 
| 
alpar@1070
 | 
   378  | 
  template<class M> 
  | 
| 
alpar@1070
 | 
   379  | 
  inline ScaleMap<M> scaleMap(const M &m,const typename M::Value &v) 
  | 
| 
alpar@1070
 | 
   380  | 
  {
 | 
| 
alpar@1070
 | 
   381  | 
    return ScaleMap<M>(m,v);
  | 
| 
alpar@1070
 | 
   382  | 
  }
  | 
| 
alpar@1070
 | 
   383  | 
  | 
| 
alpar@1041
 | 
   384  | 
  ///Quotient of two maps
  | 
| 
alpar@1041
 | 
   385  | 
  | 
| 
alpar@1041
 | 
   386  | 
  ///This \ref concept::ReadMap "read only map" returns the quotient of the
  | 
| 
alpar@1041
 | 
   387  | 
  ///values returned by the two
  | 
| 
alpar@1041
 | 
   388  | 
  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
  | 
| 
alpar@1041
 | 
   389  | 
  ///The \c Key and \c Value of \c M2 must be convertible to those of \c M1.
  | 
| 
alpar@1041
 | 
   390  | 
  | 
| 
alpar@1041
 | 
   391  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   392  | 
  class DivMap
  | 
| 
alpar@1041
 | 
   393  | 
  {
 | 
| 
alpar@1041
 | 
   394  | 
    const M1 &m1;
  | 
| 
alpar@1041
 | 
   395  | 
    const M2 &m2;
  | 
| 
alpar@1041
 | 
   396  | 
  public:
  | 
| 
alpar@1041
 | 
   397  | 
    typedef typename M1::Key Key;
  | 
| 
alpar@1041
 | 
   398  | 
    typedef typename M1::Value Value;
  | 
| 
alpar@1041
 | 
   399  | 
  | 
| 
alpar@1041
 | 
   400  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   401  | 
  | 
| 
alpar@1041
 | 
   402  | 
    ///\e
  | 
| 
alpar@1041
 | 
   403  | 
    ///
  | 
| 
alpar@1041
 | 
   404  | 
    DivMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
 | 
| 
alpar@1044
 | 
   405  | 
    Value operator[](Key k) const {return m1[k]/m2[k];}
 | 
| 
alpar@1041
 | 
   406  | 
  };
  | 
| 
alpar@1041
 | 
   407  | 
  
  | 
| 
alpar@1041
 | 
   408  | 
  ///Returns a \ref DivMap class
  | 
| 
alpar@1041
 | 
   409  | 
  | 
| 
alpar@1041
 | 
   410  | 
  ///This function just returns a \ref DivMap class.
  | 
| 
alpar@1041
 | 
   411  | 
  ///\relates DivMap
  | 
| 
alpar@1041
 | 
   412  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   413  | 
  inline DivMap<M1,M2> divMap(const M1 &m1,const M2 &m2) 
  | 
| 
alpar@1041
 | 
   414  | 
  {
 | 
| 
alpar@1041
 | 
   415  | 
    return DivMap<M1,M2>(m1,m2);
  | 
| 
alpar@1041
 | 
   416  | 
  }
  | 
| 
alpar@1041
 | 
   417  | 
  
  | 
| 
alpar@1041
 | 
   418  | 
  ///Composition of two maps
  | 
| 
alpar@1041
 | 
   419  | 
  | 
| 
alpar@1041
 | 
   420  | 
  ///This \ref concept::ReadMap "read only map" returns the composition of
  | 
| 
alpar@1041
 | 
   421  | 
  ///two
  | 
| 
alpar@1041
 | 
   422  | 
  ///given maps. That is to say, if \c m1 is of type \c M1 and \c m2 is
  | 
| 
alpar@1041
 | 
   423  | 
  ///of \c M2,
  | 
| 
alpar@1041
 | 
   424  | 
  ///then for
  | 
| 
alpar@1041
 | 
   425  | 
  ///\code
  | 
| 
alpar@1041
 | 
   426  | 
  ///  ComposeMap<M1,M2> cm(m1,m2);
  | 
| 
alpar@1041
 | 
   427  | 
  ///\endcode
  | 
| 
alpar@1044
 | 
   428  | 
  /// <tt>cm[x]</tt> will be equal to <tt>m1[m2[x]]</tt>
  | 
| 
alpar@1041
 | 
   429  | 
  ///
  | 
| 
alpar@1041
 | 
   430  | 
  ///Its \c Key is inherited from \c M2 and its \c Value is from
  | 
| 
alpar@1041
 | 
   431  | 
  ///\c M1.
  | 
| 
alpar@1041
 | 
   432  | 
  ///The \c M2::Value must be convertible to \c M1::Key.
  | 
| 
alpar@1041
 | 
   433  | 
  ///\todo Check the requirements.
  | 
| 
alpar@1041
 | 
   434  | 
  | 
| 
alpar@1041
 | 
   435  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   436  | 
  class ComposeMap
  | 
| 
alpar@1041
 | 
   437  | 
  {
 | 
| 
alpar@1041
 | 
   438  | 
    const M1 &m1;
  | 
| 
alpar@1041
 | 
   439  | 
    const M2 &m2;
  | 
| 
alpar@1041
 | 
   440  | 
  public:
  | 
| 
alpar@1041
 | 
   441  | 
    typedef typename M2::Key Key;
  | 
| 
alpar@1041
 | 
   442  | 
    typedef typename M1::Value Value;
  | 
| 
alpar@1041
 | 
   443  | 
  | 
| 
alpar@1041
 | 
   444  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   445  | 
  | 
| 
alpar@1041
 | 
   446  | 
    ///\e
  | 
| 
alpar@1041
 | 
   447  | 
    ///
  | 
| 
alpar@1041
 | 
   448  | 
    ComposeMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
 | 
| 
alpar@1044
 | 
   449  | 
    Value operator[](Key k) const {return m1[m2[k]];}
 | 
| 
alpar@1041
 | 
   450  | 
  };
  | 
| 
alpar@1041
 | 
   451  | 
  
  | 
| 
alpar@1041
 | 
   452  | 
  ///Returns a \ref ComposeMap class
  | 
| 
alpar@1041
 | 
   453  | 
  | 
| 
alpar@1041
 | 
   454  | 
  ///This function just returns a \ref ComposeMap class.
  | 
| 
alpar@1041
 | 
   455  | 
  ///\relates ComposeMap
  | 
| 
alpar@1041
 | 
   456  | 
  template<class M1,class M2> 
  | 
| 
alpar@1041
 | 
   457  | 
  inline ComposeMap<M1,M2> composeMap(const M1 &m1,const M2 &m2) 
  | 
| 
alpar@1041
 | 
   458  | 
  {
 | 
| 
alpar@1041
 | 
   459  | 
    return ComposeMap<M1,M2>(m1,m2);
  | 
| 
alpar@1041
 | 
   460  | 
  }
  | 
| 
alpar@1041
 | 
   461  | 
  | 
| 
alpar@1041
 | 
   462  | 
  ///Negative value of a map
  | 
| 
alpar@1041
 | 
   463  | 
  | 
| 
alpar@1041
 | 
   464  | 
  ///This \ref concept::ReadMap "read only map" returns the negative
  | 
| 
alpar@1041
 | 
   465  | 
  ///value of the
  | 
| 
alpar@1041
 | 
   466  | 
  ///value returned by the
  | 
| 
alpar@1041
 | 
   467  | 
  ///given map. Its \c Key and \c Value will be inherited from \c M.
  | 
| 
alpar@1041
 | 
   468  | 
  ///The unary \c - operator must be defined for \c Value, of course.
  | 
| 
alpar@1041
 | 
   469  | 
  | 
| 
alpar@1041
 | 
   470  | 
  template<class M> 
  | 
| 
alpar@1041
 | 
   471  | 
  class NegMap
  | 
| 
alpar@1041
 | 
   472  | 
  {
 | 
| 
alpar@1041
 | 
   473  | 
    const M &m;
  | 
| 
alpar@1041
 | 
   474  | 
  public:
  | 
| 
alpar@1041
 | 
   475  | 
    typedef typename M::Key Key;
  | 
| 
alpar@1041
 | 
   476  | 
    typedef typename M::Value Value;
  | 
| 
alpar@1041
 | 
   477  | 
  | 
| 
alpar@1041
 | 
   478  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   479  | 
  | 
| 
alpar@1041
 | 
   480  | 
    ///\e
  | 
| 
alpar@1041
 | 
   481  | 
    ///
  | 
| 
alpar@1041
 | 
   482  | 
    NegMap(const M &_m) : m(_m) {};
 | 
| 
alpar@1044
 | 
   483  | 
    Value operator[](Key k) const {return -m[k];}
 | 
| 
alpar@1041
 | 
   484  | 
  };
  | 
| 
alpar@1041
 | 
   485  | 
  
  | 
| 
alpar@1041
 | 
   486  | 
  ///Returns a \ref NegMap class
  | 
| 
alpar@1041
 | 
   487  | 
  | 
| 
alpar@1041
 | 
   488  | 
  ///This function just returns a \ref NegMap class.
  | 
| 
alpar@1041
 | 
   489  | 
  ///\relates NegMap
  | 
| 
alpar@1041
 | 
   490  | 
  template<class M> 
  | 
| 
alpar@1041
 | 
   491  | 
  inline NegMap<M> negMap(const M &m) 
  | 
| 
alpar@1041
 | 
   492  | 
  {
 | 
| 
alpar@1041
 | 
   493  | 
    return NegMap<M>(m);
  | 
| 
alpar@1041
 | 
   494  | 
  }
  | 
| 
alpar@1041
 | 
   495  | 
  | 
| 
alpar@1041
 | 
   496  | 
  | 
| 
alpar@1041
 | 
   497  | 
  ///Absolute value of a map
  | 
| 
alpar@1041
 | 
   498  | 
  | 
| 
alpar@1041
 | 
   499  | 
  ///This \ref concept::ReadMap "read only map" returns the absolute value
  | 
| 
alpar@1041
 | 
   500  | 
  ///of the
  | 
| 
alpar@1041
 | 
   501  | 
  ///value returned by the
  | 
| 
alpar@1044
 | 
   502  | 
  ///given map. Its \c Key and \c Value will be inherited
  | 
| 
alpar@1044
 | 
   503  | 
  ///from <tt>M</tt>. <tt>Value</tt>
  | 
| 
alpar@1044
 | 
   504  | 
  ///must be comparable to <tt>0</tt> and the unary <tt>-</tt>
  | 
| 
alpar@1044
 | 
   505  | 
  ///operator must be defined for it, of course.
  | 
| 
alpar@1044
 | 
   506  | 
  ///
  | 
| 
alpar@1044
 | 
   507  | 
  ///\bug We need a unified way to handle the situation below:
  | 
| 
alpar@1044
 | 
   508  | 
  ///\code
  | 
| 
alpar@1044
 | 
   509  | 
  ///  struct _UnConvertible {};
 | 
| 
alpar@1044
 | 
   510  | 
  ///  template<class A> inline A t_abs(A a) {return _UnConvertible();}
 | 
| 
alpar@1044
 | 
   511  | 
  ///  template<> inline int t_abs<>(int n) {return abs(n);}
 | 
| 
alpar@1044
 | 
   512  | 
  ///  template<> inline long int t_abs<>(long int n) {return labs(n);}
 | 
| 
alpar@1044
 | 
   513  | 
  ///  template<> inline long long int t_abs<>(long long int n) {return ::llabs(n);}
 | 
| 
alpar@1044
 | 
   514  | 
  ///  template<> inline float t_abs<>(float n) {return fabsf(n);}
 | 
| 
alpar@1044
 | 
   515  | 
  ///  template<> inline double t_abs<>(double n) {return fabs(n);}
 | 
| 
alpar@1044
 | 
   516  | 
  ///  template<> inline long double t_abs<>(long double n) {return fabsl(n);}
 | 
| 
alpar@1044
 | 
   517  | 
  ///\endcode
  | 
| 
alpar@1044
 | 
   518  | 
  
  | 
| 
alpar@1041
 | 
   519  | 
  | 
| 
alpar@1041
 | 
   520  | 
  template<class M> 
  | 
| 
alpar@1041
 | 
   521  | 
  class AbsMap
  | 
| 
alpar@1041
 | 
   522  | 
  {
 | 
| 
alpar@1041
 | 
   523  | 
    const M &m;
  | 
| 
alpar@1041
 | 
   524  | 
  public:
  | 
| 
alpar@1041
 | 
   525  | 
    typedef typename M::Key Key;
  | 
| 
alpar@1041
 | 
   526  | 
    typedef typename M::Value Value;
  | 
| 
alpar@1041
 | 
   527  | 
  | 
| 
alpar@1041
 | 
   528  | 
    ///Constructor
  | 
| 
alpar@1041
 | 
   529  | 
  | 
| 
alpar@1041
 | 
   530  | 
    ///\e
  | 
| 
alpar@1041
 | 
   531  | 
    ///
  | 
| 
alpar@1041
 | 
   532  | 
    AbsMap(const M &_m) : m(_m) {};
 | 
| 
alpar@1044
 | 
   533  | 
    Value operator[](Key k) const {Value tmp=m[k]; return tmp>=0?tmp:-tmp;}
 | 
| 
alpar@1041
 | 
   534  | 
  };
  | 
| 
alpar@1041
 | 
   535  | 
  
  | 
| 
alpar@1041
 | 
   536  | 
  ///Returns a \ref AbsMap class
  | 
| 
alpar@1041
 | 
   537  | 
  | 
| 
alpar@1041
 | 
   538  | 
  ///This function just returns a \ref AbsMap class.
  | 
| 
alpar@1041
 | 
   539  | 
  ///\relates AbsMap
  | 
| 
alpar@1041
 | 
   540  | 
  template<class M> 
  | 
| 
alpar@1041
 | 
   541  | 
  inline AbsMap<M> absMap(const M &m) 
  | 
| 
alpar@1041
 | 
   542  | 
  {
 | 
| 
alpar@1041
 | 
   543  | 
    return AbsMap<M>(m);
  | 
| 
alpar@1041
 | 
   544  | 
  }
  | 
| 
alpar@1041
 | 
   545  | 
  | 
| 
alpar@1076
 | 
   546  | 
  ///Converts an STL style functor to a a map
  | 
| 
alpar@1076
 | 
   547  | 
  | 
| 
alpar@1076
 | 
   548  | 
  ///This \ref concept::ReadMap "read only map" returns the value
  | 
| 
alpar@1076
 | 
   549  | 
  ///of a
  | 
| 
alpar@1076
 | 
   550  | 
  ///given map.
  | 
| 
alpar@1076
 | 
   551  | 
  ///
  | 
| 
alpar@1076
 | 
   552  | 
  ///Template parameters \c K and \c V will become its
  | 
| 
alpar@1076
 | 
   553  | 
  ///\c Key and \c Value. They must be given explicitely
  | 
| 
alpar@1076
 | 
   554  | 
  ///because a functor does not provide such typedefs.
  | 
| 
alpar@1076
 | 
   555  | 
  ///
  | 
| 
alpar@1076
 | 
   556  | 
  ///Parameter \c F is the type of the used functor.
  | 
| 
alpar@1076
 | 
   557  | 
  
  | 
| 
alpar@1076
 | 
   558  | 
  | 
| 
alpar@1076
 | 
   559  | 
  template<class K,class V,class F> 
  | 
| 
alpar@1076
 | 
   560  | 
  class FunctorMap
  | 
| 
alpar@1076
 | 
   561  | 
  {
 | 
| 
alpar@1076
 | 
   562  | 
    const F &f;
  | 
| 
alpar@1076
 | 
   563  | 
  public:
  | 
| 
alpar@1076
 | 
   564  | 
    typedef K Key;
  | 
| 
alpar@1076
 | 
   565  | 
    typedef V Value;
  | 
| 
alpar@1076
 | 
   566  | 
  | 
| 
alpar@1076
 | 
   567  | 
    ///Constructor
  | 
| 
alpar@1076
 | 
   568  | 
  | 
| 
alpar@1076
 | 
   569  | 
    ///\e
  | 
| 
alpar@1076
 | 
   570  | 
    ///
  | 
| 
alpar@1076
 | 
   571  | 
    FunctorMap(const F &_f) : f(_f) {};
 | 
| 
alpar@1076
 | 
   572  | 
    Value operator[](Key k) const {return f(k);}
 | 
| 
alpar@1076
 | 
   573  | 
  };
  | 
| 
alpar@1076
 | 
   574  | 
  
  | 
| 
alpar@1076
 | 
   575  | 
  ///Returns a \ref FunctorMap class
  | 
| 
alpar@1076
 | 
   576  | 
  | 
| 
alpar@1076
 | 
   577  | 
  ///This function just returns a \ref FunctorMap class.
  | 
| 
alpar@1076
 | 
   578  | 
  ///
  | 
| 
alpar@1076
 | 
   579  | 
  ///The third template parameter isn't necessary to be given.
  | 
| 
alpar@1076
 | 
   580  | 
  ///\relates FunctorMap
  | 
| 
alpar@1076
 | 
   581  | 
  template<class K,class V, class F>
  | 
| 
alpar@1076
 | 
   582  | 
  inline FunctorMap<K,V,F> functorMap(const F &f) 
  | 
| 
alpar@1076
 | 
   583  | 
  {
 | 
| 
alpar@1076
 | 
   584  | 
    return FunctorMap<K,V,F>(f);
  | 
| 
alpar@1076
 | 
   585  | 
  }
  | 
| 
alpar@1076
 | 
   586  | 
  | 
| 
alpar@1076
 | 
   587  | 
  ///Converts a map to an STL style functor
  | 
| 
alpar@1076
 | 
   588  | 
  | 
| 
alpar@1076
 | 
   589  | 
  ///This class Converts a map to an STL style functor.
  | 
| 
alpar@1076
 | 
   590  | 
  ///that is it provides an <tt>operator()</tt> to read its values.
  | 
| 
alpar@1076
 | 
   591  | 
  ///
  | 
| 
alpar@1076
 | 
   592  | 
  ///For the sake of convenience it also works as a ususal map, i.e
  | 
| 
alpar@1076
 | 
   593  | 
  ///<tt>operator[]</tt> and the \c Key and \c Valu typedefs also exist.
  | 
| 
alpar@1076
 | 
   594  | 
  | 
| 
alpar@1076
 | 
   595  | 
  template<class M> 
  | 
| 
alpar@1076
 | 
   596  | 
  class MapFunctor
  | 
| 
alpar@1076
 | 
   597  | 
  {
 | 
| 
alpar@1076
 | 
   598  | 
    const M &m;
  | 
| 
alpar@1076
 | 
   599  | 
  public:
  | 
| 
alpar@1076
 | 
   600  | 
    typedef typename M::Key Key;
  | 
| 
alpar@1076
 | 
   601  | 
    typedef typename M::Value Value;
  | 
| 
alpar@1076
 | 
   602  | 
  | 
| 
alpar@1076
 | 
   603  | 
    ///Constructor
  | 
| 
alpar@1076
 | 
   604  | 
  | 
| 
alpar@1076
 | 
   605  | 
    ///\e
  | 
| 
alpar@1076
 | 
   606  | 
    ///
  | 
| 
alpar@1076
 | 
   607  | 
    MapFunctor(const M &_m) : m(_m) {};
 | 
| 
alpar@1076
 | 
   608  | 
    ///Returns a value of the map
  | 
| 
alpar@1076
 | 
   609  | 
    
  | 
| 
alpar@1076
 | 
   610  | 
    ///\e
  | 
| 
alpar@1076
 | 
   611  | 
    ///
  | 
| 
alpar@1076
 | 
   612  | 
    Value operator()(Key k) const {return m[k];}
 | 
| 
alpar@1076
 | 
   613  | 
    ///\e
  | 
| 
alpar@1076
 | 
   614  | 
    ///
  | 
| 
alpar@1076
 | 
   615  | 
    Value operator[](Key k) const {return m[k];}
 | 
| 
alpar@1076
 | 
   616  | 
  };
  | 
| 
alpar@1076
 | 
   617  | 
  
  | 
| 
alpar@1076
 | 
   618  | 
  ///Returns a \ref MapFunctor class
  | 
| 
alpar@1076
 | 
   619  | 
  | 
| 
alpar@1076
 | 
   620  | 
  ///This function just returns a \ref MapFunctor class.
  | 
| 
alpar@1076
 | 
   621  | 
  ///\relates MapFunctor
  | 
| 
alpar@1076
 | 
   622  | 
  template<class M> 
  | 
| 
alpar@1076
 | 
   623  | 
  inline MapFunctor<M> mapFunctor(const M &m) 
  | 
| 
alpar@1076
 | 
   624  | 
  {
 | 
| 
alpar@1076
 | 
   625  | 
    return MapFunctor<M>(m);
  | 
| 
alpar@1076
 | 
   626  | 
  }
  | 
| 
alpar@1076
 | 
   627  | 
  | 
| 
alpar@1076
 | 
   628  | 
  | 
| 
alpar@1041
 | 
   629  | 
  /// @}
  | 
| 
klao@286
 | 
   630  | 
  
  | 
| 
klao@286
 | 
   631  | 
}
  | 
| 
alpar@1041
 | 
   632  | 
  | 
| 
alpar@1041
 | 
   633  | 
  | 
| 
alpar@921
 | 
   634  | 
#endif // LEMON_MAPS_H
  |