gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Minor doc improvements.
0 1 0
default
1 file changed with 5 insertions and 4 deletions:
↑ Collapse diff ↑
Ignore white space 128 line context
1 1
/* -*- C++ -*-
2 2
 *
3 3
 * This file is a part of LEMON, a generic C++ optimization library
4 4
 *
5 5
 * Copyright (C) 2003-2007
6 6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
8 8
 *
9 9
 * Permission to use, modify and distribute this software is granted
10 10
 * provided that this copyright notice appears in all copies. For
11 11
 * precise terms see the accompanying LICENSE file.
12 12
 *
13 13
 * This software is provided "AS IS" with no warranty of any kind,
14 14
 * express or implied, and with no claim as to its suitability for any
15 15
 * purpose.
16 16
 *
17 17
 */
18 18

	
19 19
#ifndef LEMON_CONCEPT_MAPS_H
20 20
#define LEMON_CONCEPT_MAPS_H
21 21

	
22 22
#include <lemon/bits/utility.h>
23 23
#include <lemon/concept_check.h>
24 24

	
25 25
///\ingroup concept
26 26
///\file
27 27
///\brief Map concepts checking classes for testing and documenting.
28 28

	
29 29
namespace lemon {
30 30

	
31 31
  namespace concepts {
32 32
  
33 33
    /// \addtogroup concept
34 34
    /// @{
35 35

	
36 36
    /// Readable map concept
37 37

	
38 38
    /// Readable map concept.
39 39
    ///
40 40
    template<typename K, typename T>
41 41
    class ReadMap
42 42
    {
43 43
    public:
44 44
      /// The key type of the map.
45 45
      typedef K Key;    
46 46
      /// The value type of the map. (The type of objects associated with the keys).
47 47
      typedef T Value;
48 48

	
49 49
      /// Returns the value associated with a key.
50 50

	
51
      /// Returns the value associated with a key.
51 52
      /// \bug Value shouldn't need to be default constructible.
52 53
      ///
53 54
      Value operator[](const Key &) const {return Value();}
54 55

	
55 56
      template<typename _ReadMap>
56 57
      struct Constraints {
57 58

	
58 59
	void constraints() {
59 60
	  Value val = m[key];
60 61
	  val = m[key];
61 62
	  typename _ReadMap::Value own_val = m[own_key]; 
62 63
	  own_val = m[own_key]; 
63 64

	
64 65
	  ignore_unused_variable_warning(val);
65 66
	  ignore_unused_variable_warning(own_val);
66 67
	  ignore_unused_variable_warning(key);
67 68
	}
68 69
	Key& key;
69 70
	typename _ReadMap::Key& own_key;
70 71
	_ReadMap& m;
71 72
      };
72 73
      
73 74
    };
74 75

	
75 76

	
76 77
    /// Writable map concept
77 78
    
78 79
    /// Writable map concept.
79 80
    ///
80 81
    template<typename K, typename T>
81 82
    class WriteMap
82 83
    {
83 84
    public:
84 85
      /// The key type of the map.
85 86
      typedef K Key;    
86 87
      /// The value type of the map. (The type of objects associated with the keys).
87 88
      typedef T Value;
88 89

	
89 90
      /// Sets the value associated with a key.
90 91
      void set(const Key &,const Value &) {}
91 92

	
92 93
      ///Default constructor
93 94
      WriteMap() {}
94 95

	
95 96
      template <typename _WriteMap>
96 97
      struct Constraints {
97 98
	void constraints() {
98 99
	  // No constraints for constructor.
99 100
	  m.set(key, val);
100 101
	  m.set(own_key, own_val);
101 102
	  ignore_unused_variable_warning(key);
102 103
	  ignore_unused_variable_warning(val);
103 104
	  ignore_unused_variable_warning(own_key);
104 105
	  ignore_unused_variable_warning(own_val);
105 106
	}
106 107

	
107 108
	Value& val;
108 109
	typename _WriteMap::Value own_val;
109 110
	Key& key;
110 111
	typename _WriteMap::Key& own_key;
111 112
	_WriteMap& m;
112 113

	
113 114
      };
114 115
    };
115 116

	
116
    /// Read/Writable map concept
117
    /// Read/writable map concept
117 118
    
118 119
    /// Read/writable map concept.
119 120
    ///
120 121
    template<typename K, typename T>
121 122
    class ReadWriteMap : public ReadMap<K,T>,
122 123
			 public WriteMap<K,T>
123 124
    {
124 125
    public:
125 126
      /// The key type of the map.
126 127
      typedef K Key;    
127 128
      /// The value type of the map. (The type of objects associated with the keys).
128 129
      typedef T Value;
129 130

	
130 131
      /// Returns the value associated with a key.
131 132
      Value operator[](const Key &) const {return Value();}
132 133
      /// Sets the value associated with a key.
133 134
      void set(const Key & ,const Value &) {}
134 135

	
135 136
      template<typename _ReadWriteMap>
136 137
      struct Constraints {
137 138
	void constraints() {
138 139
	  checkConcept<ReadMap<K, T>, _ReadWriteMap >();
139 140
	  checkConcept<WriteMap<K, T>, _ReadWriteMap >();
140 141
	}
141 142
      };
142 143
    };
143 144
  
144 145
  
145 146
    /// Dereferable map concept
146 147
    
147 148
    /// Dereferable map concept.
148 149
    ///
150
    /// \todo Rethink this concept.
149 151
    template<typename K, typename T, typename R, typename CR>
150 152
    class ReferenceMap : public ReadWriteMap<K,T>
151 153
    {
152 154
    public:
153 155
      /// Tag for reference maps.
154 156
      typedef True ReferenceMapTag;
155 157
      /// The key type of the map.
156 158
      typedef K Key;    
157 159
      /// The value type of the map. (The type of objects associated with the keys).
158 160
      typedef T Value;
159 161
      /// The reference type of the map.
160 162
      typedef R Reference;
161 163
      /// The const reference type of the map.
162 164
      typedef CR ConstReference;
163 165

	
164 166
    protected:
165 167
      Value tmp;
166 168
    public:
167 169

	
168
      ///Returns a reference to the value associated to a key.
170
      ///Returns a reference to the value associated with a key.
169 171
      Reference operator[](const Key &) { return tmp; }
170
      ///Returns a const reference to the value associated to a key.
172
      ///Returns a const reference to the value associated with a key.
171 173
      ConstReference operator[](const Key &) const { return tmp; }
172 174
      /// Sets the value associated with a key.
173 175
      void set(const Key &k,const Value &t) { operator[](k)=t; }
174 176

	
175
      /// \todo Rethink this concept. 
176 177
      template<typename _ReferenceMap>
177 178
      struct ReferenceMapConcept {
178 179

	
179 180
	void constraints() {
180 181
	  checkConcept<ReadWriteMap, _ReferenceMap >();
181 182
	  m[key] = val;
182 183
	  val  = m[key];
183 184
	  m[key] = ref;
184 185
	  ref = m[key];
185 186
	  m[own_key] = own_val;
186 187
	  own_val  = m[own_key];
187 188
	  m[own_key] = own_ref;
188 189
	  own_ref = m[own_key];	  	  
189 190
	}
190 191

	
191 192
	typename _ReferenceMap::Key& own_key;
192 193
	typename _ReferenceMap::Value& own_val;
193 194
	typename _ReferenceMap::Reference& own_ref;
194 195
	Key& key;
195 196
	Value& val;
196 197
	Reference& ref;
197 198
	_ReferenceMap& m;
198 199
      };
199 200
    };
200 201

	
201 202
    // @}
202 203

	
203 204
  } //namespace concepts
204 205

	
205 206
} //namespace lemon
206 207

	
207 208
#endif // LEMON_CONCEPT_MAPS_H
0 comments (0 inline)