COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/deba/map_defines.h @ 854:baf0b6e40211

Last change on this file since 854:baf0b6e40211 was 783:81bf2d766164, checked in by Balazs Dezso, 20 years ago
File size: 3.4 KB
Line 
1// -*- c++ -*-
2#ifndef MAP_DEFINES_H
3#define MAP_DEFINES_H
4
5/** Creates the EdgeMapRegistry type an declare a mutable instance
6 *  named edge_maps.
7 */
8#define CREATE_EDGE_MAP_REGISTRY \
9typedef MapRegistry<Graph, Edge, EdgeIt> EdgeMapRegistry; \
10mutable EdgeMapRegistry edge_maps;
11
12/** Creates the NodeMapRegistry type an declare a mutable instance
13 *  named node_maps.
14 */
15#define CREATE_NODE_MAP_REGISTRY \
16typedef MapRegistry<Graph, Node, NodeIt> NodeMapRegistry; \
17mutable NodeMapRegistry node_maps;
18
19/** Creates both map registries.
20 */
21#define CREATE_MAP_REGISTRIES \
22CREATE_NODE_MAP_REGISTRY \
23CREATE_EDGE_MAP_REGISTRY
24
25/** Creates a map a concrete factory type from a template map
26 *  factory to use as node map factory.
27 */
28#define CREATE_NODE_MAP_FACTORY(TemplateFactory) \
29typedef TemplateFactory<NodeMapRegistry> NodeMapFactory;
30
31/** Creates a map a concrete factory type from a template map
32 *  factory to use as edge map factory.
33 */
34#define CREATE_EDGE_MAP_FACTORY(TemplateFactory) \
35typedef TemplateFactory<EdgeMapRegistry> EdgeMapFactory;
36
37/** Creates both map factories.
38 */
39#define CREATE_MAP_FACTORIES(TemplateFactory) \
40CREATE_NODE_MAP_FACTORY(TemplateFactory) \
41CREATE_EDGE_MAP_FACTORY(TemplateFactory)
42
43/** Import a map from a concrete map factory. The import method is
44 *  an overloading of the map type.
45 *  The reason to use these macro is that the c++ does not support
46 *  the template typedefs. If a future release of the c++
47 *  supports this feature it should be fixed.
48 */
49#define IMPORT_NODE_MAP(Factory) \
50template <typename V> \
51class NodeMap : public Factory::Map<V> { \
52public: \
53NodeMap() {} \
54NodeMap(const Graph& g) : Factory::Map<V>(&g, &(g.node_maps)) {} \
55NodeMap(const Graph& g, const V& v) : Factory::Map<V>(g, g.node_maps, v) {} \
56NodeMap(const NodeMap& copy) \
57  : Factory::Map<V>(static_cast<const Factory::Map<V>&>(copy)) {} \
58template <typename CMap> NodeMap(const CMap& copy) : Factory::Map<V>(copy) {} \
59NodeMap& operator=(const NodeMap& copy) { \
60  this->Factory::Map<V>::operator=(static_cast<Factory::Map<V>&>(copy)); \
61  return *this; \
62} \
63template <typename CMap>NodeMap& operator=(const CMap& copy) { \
64  this->Factory::Map<V>::operator=<CMap>(static_cast<Factory::Map<V>&>(copy));\
65  return *this; \
66} \
67};
68
69/** Import a map from a concrete map factory. The import method is
70 *  an overloading of the map type.
71 *  The reason to use these macro is that the c++ does not support
72 *  the template typedefs. If a future release of the c++
73 *  supports this feature it should be fixed.
74 */
75#define IMPORT_EDGE_MAP(Factory) \
76template <typename V> \
77class EdgeMap : public Factory::Map<V> { \
78public: \
79EdgeMap() {} \
80EdgeMap(const Graph& g) : Factory::Map<V>(g, g.edge_maps) {} \
81EdgeMap(const Graph& g, const V& v) : Factory::Map<V>(g, g.node_maps, v) {} \
82EdgeMap(const EdgeMap& copy) \
83  : Factory::Map<V>(static_cast<Factory::Map<V>&>(copy)) {} \
84template <typename CMap> EdgeMap(const CMap& copy) : Factory::Map<V>(copy) {} \
85EdgeMap& operator=(const EdgeMap& copy) { \
86  this->Factory::Map<V>::operator=(static_cast<Factory::Map<V>&>(copy)); \
87  return *this; \
88} \
89template <typename CMap>EdgeMap& operator=(const CMap& copy) { \
90  this->Factory::Map<V>::operator=<CMap>(static_cast<Factory::Map<V>&>(copy));\
91  return *this; \
92} \
93};
94
95/** This macro creates both map factories and imports both maps.
96 */
97#define CREATE_MAPS(TemplateFactory) \
98CREATE_MAP_FACTORIES(TemplateFactory) \
99IMPORT_NODE_MAP(NodeMapFactory) \
100IMPORT_EDGE_MAP(EdgeMapFactory)
101
102#endif
Note: See TracBrowser for help on using the repository browser.