No children
0
7
0
... | ... |
@@ -65,19 +65,19 @@ |
65 | 65 |
# C4800: 'type' : forcing value to bool 'true' or 'false' |
66 | 66 |
# (performance warning) |
67 | 67 |
# C4996: 'function': was declared deprecated |
68 | 68 |
ELSE() |
69 |
SET(CXX_WARNING "-Wall |
|
69 |
SET(CXX_WARNING "-Wall") |
|
70 | 70 |
ENDIF() |
71 | 71 |
ENDIF() |
72 | 72 |
SET(LEMON_CXX_WARNING_FLAGS ${CXX_WARNING} CACHE STRING "LEMON warning flags.") |
73 | 73 |
|
74 | 74 |
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${LEMON_CXX_WARNING_FLAGS}") |
75 | 75 |
|
76 |
SET( CMAKE_CXX_FLAGS_MAINTAINER "-Werror -ggdb" CACHE STRING |
|
76 |
SET( CMAKE_CXX_FLAGS_MAINTAINER "-Werror -ggdb -O0" CACHE STRING |
|
77 | 77 |
"Flags used by the C++ compiler during maintainer builds." |
78 | 78 |
FORCE ) |
79 |
SET( CMAKE_C_FLAGS_MAINTAINER "-Werror" CACHE STRING |
|
79 |
SET( CMAKE_C_FLAGS_MAINTAINER "-Werror -O0" CACHE STRING |
|
80 | 80 |
"Flags used by the C compiler during maintainer builds." |
81 | 81 |
FORCE ) |
82 | 82 |
SET( CMAKE_EXE_LINKER_FLAGS_MAINTAINER |
83 | 83 |
"-Wl,--warn-unresolved-symbols,--warn-once" CACHE STRING |
... | ... |
@@ -114,8 +114,9 @@ |
114 | 114 |
} |
115 | 115 |
|
116 | 116 |
const _GraphItem &ia; |
117 | 117 |
const _GraphItem &ib; |
118 |
Constraints() {} |
|
118 | 119 |
}; |
119 | 120 |
}; |
120 | 121 |
|
121 | 122 |
/// \brief Base skeleton class for directed graphs. |
... | ... |
@@ -173,8 +174,9 @@ |
173 | 174 |
} |
174 | 175 |
} |
175 | 176 |
|
176 | 177 |
const _Digraph& digraph; |
178 |
Constraints() {} |
|
177 | 179 |
}; |
178 | 180 |
}; |
179 | 181 |
|
180 | 182 |
/// \brief Base skeleton class for undirected graphs. |
... | ... |
@@ -289,8 +291,9 @@ |
289 | 291 |
} |
290 | 292 |
} |
291 | 293 |
|
292 | 294 |
const _Graph& graph; |
295 |
Constraints() {} |
|
293 | 296 |
}; |
294 | 297 |
|
295 | 298 |
}; |
296 | 299 |
|
... | ... |
@@ -368,8 +371,9 @@ |
368 | 371 |
ignore_unused_variable_warning(eid); |
369 | 372 |
} |
370 | 373 |
|
371 | 374 |
const _Digraph& digraph; |
375 |
Constraints() {} |
|
372 | 376 |
}; |
373 | 377 |
}; |
374 | 378 |
|
375 | 379 |
/// \brief Skeleton class for \e idable undirected graphs. |
... | ... |
@@ -420,8 +424,9 @@ |
420 | 424 |
ignore_unused_variable_warning(ueid); |
421 | 425 |
} |
422 | 426 |
|
423 | 427 |
const _Graph& graph; |
428 |
Constraints() {} |
|
424 | 429 |
}; |
425 | 430 |
}; |
426 | 431 |
|
427 | 432 |
/// \brief Concept class for \c NodeIt, \c ArcIt and \c EdgeIt types. |
... | ... |
@@ -497,8 +502,9 @@ |
497 | 502 |
Item bi = it1; |
498 | 503 |
bi = it2; |
499 | 504 |
} |
500 | 505 |
const GR& g; |
506 |
Constraints() {} |
|
501 | 507 |
}; |
502 | 508 |
}; |
503 | 509 |
|
504 | 510 |
/// \brief Concept class for \c InArcIt, \c OutArcIt and |
... | ... |
@@ -585,8 +591,9 @@ |
585 | 591 |
e = it2; |
586 | 592 |
} |
587 | 593 |
const Base& node; |
588 | 594 |
const GR& graph; |
595 |
Constraints() {} |
|
589 | 596 |
}; |
590 | 597 |
}; |
591 | 598 |
|
592 | 599 |
/// \brief Skeleton class for iterable directed graphs. |
... | ... |
@@ -761,8 +768,9 @@ |
761 | 768 |
} |
762 | 769 |
} |
763 | 770 |
|
764 | 771 |
const _Digraph& digraph; |
772 |
Constraints() {} |
|
765 | 773 |
}; |
766 | 774 |
}; |
767 | 775 |
|
768 | 776 |
/// \brief Skeleton class for iterable undirected graphs. |
... | ... |
@@ -885,8 +893,9 @@ |
885 | 893 |
} |
886 | 894 |
} |
887 | 895 |
|
888 | 896 |
const _Graph& graph; |
897 |
Constraints() {} |
|
889 | 898 |
}; |
890 | 899 |
}; |
891 | 900 |
|
892 | 901 |
/// \brief Skeleton class for alterable directed graphs. |
... | ... |
@@ -942,8 +951,9 @@ |
942 | 951 |
ignore_unused_variable_warning(en); |
943 | 952 |
} |
944 | 953 |
|
945 | 954 |
const _Digraph& digraph; |
955 |
Constraints() {} |
|
946 | 956 |
}; |
947 | 957 |
}; |
948 | 958 |
|
949 | 959 |
/// \brief Skeleton class for alterable undirected graphs. |
... | ... |
@@ -983,8 +993,9 @@ |
983 | 993 |
ignore_unused_variable_warning(uen); |
984 | 994 |
} |
985 | 995 |
|
986 | 996 |
const _Graph& graph; |
997 |
Constraints() {} |
|
987 | 998 |
}; |
988 | 999 |
}; |
989 | 1000 |
|
990 | 1001 |
/// \brief Concept class for standard graph maps. |
... | ... |
@@ -1060,8 +1071,9 @@ |
1060 | 1071 |
|
1061 | 1072 |
const _Map &m; |
1062 | 1073 |
const GR &g; |
1063 | 1074 |
const typename GraphMap::Value &t; |
1075 |
Constraints() {} |
|
1064 | 1076 |
}; |
1065 | 1077 |
|
1066 | 1078 |
}; |
1067 | 1079 |
|
... | ... |
@@ -1198,8 +1210,9 @@ |
1198 | 1210 |
} |
1199 | 1211 |
} |
1200 | 1212 |
|
1201 | 1213 |
const _Digraph& digraph; |
1214 |
Constraints() {} |
|
1202 | 1215 |
}; |
1203 | 1216 |
}; |
1204 | 1217 |
|
1205 | 1218 |
/// \brief Skeleton class for mappable undirected graphs. |
... | ... |
@@ -1283,8 +1296,9 @@ |
1283 | 1296 |
} |
1284 | 1297 |
} |
1285 | 1298 |
|
1286 | 1299 |
const _Graph& graph; |
1300 |
Constraints() {} |
|
1287 | 1301 |
}; |
1288 | 1302 |
}; |
1289 | 1303 |
|
1290 | 1304 |
/// \brief Skeleton class for extendable directed graphs. |
... | ... |
@@ -1327,8 +1341,9 @@ |
1327 | 1341 |
arc = digraph.addArc(node_a, node_b); |
1328 | 1342 |
} |
1329 | 1343 |
|
1330 | 1344 |
_Digraph& digraph; |
1345 |
Constraints() {} |
|
1331 | 1346 |
}; |
1332 | 1347 |
}; |
1333 | 1348 |
|
1334 | 1349 |
/// \brief Skeleton class for extendable undirected graphs. |
... | ... |
@@ -1371,8 +1386,9 @@ |
1371 | 1386 |
edge = graph.addEdge(node_a, node_b); |
1372 | 1387 |
} |
1373 | 1388 |
|
1374 | 1389 |
_Graph& graph; |
1390 |
Constraints() {} |
|
1375 | 1391 |
}; |
1376 | 1392 |
}; |
1377 | 1393 |
|
1378 | 1394 |
/// \brief Skeleton class for erasable directed graphs. |
... | ... |
@@ -1410,8 +1426,9 @@ |
1410 | 1426 |
digraph.erase(arc); |
1411 | 1427 |
} |
1412 | 1428 |
|
1413 | 1429 |
_Digraph& digraph; |
1430 |
Constraints() {} |
|
1414 | 1431 |
}; |
1415 | 1432 |
}; |
1416 | 1433 |
|
1417 | 1434 |
/// \brief Skeleton class for erasable undirected graphs. |
... | ... |
@@ -1449,8 +1466,9 @@ |
1449 | 1466 |
graph.erase(edge); |
1450 | 1467 |
} |
1451 | 1468 |
|
1452 | 1469 |
_Graph& graph; |
1470 |
Constraints() {} |
|
1453 | 1471 |
}; |
1454 | 1472 |
}; |
1455 | 1473 |
|
1456 | 1474 |
/// \brief Skeleton class for clearable directed graphs. |
... | ... |
@@ -1477,8 +1495,9 @@ |
1477 | 1495 |
digraph.clear(); |
1478 | 1496 |
} |
1479 | 1497 |
|
1480 | 1498 |
_Digraph& digraph; |
1499 |
Constraints() {} |
|
1481 | 1500 |
}; |
1482 | 1501 |
}; |
1483 | 1502 |
|
1484 | 1503 |
/// \brief Skeleton class for clearable undirected graphs. |
... | ... |
@@ -1505,8 +1524,9 @@ |
1505 | 1524 |
graph.clear(); |
1506 | 1525 |
} |
1507 | 1526 |
|
1508 | 1527 |
_Graph& graph; |
1528 |
Constraints() {} |
|
1509 | 1529 |
}; |
1510 | 1530 |
}; |
1511 | 1531 |
|
1512 | 1532 |
} |
... | ... |
@@ -67,8 +67,9 @@ |
67 | 67 |
} |
68 | 68 |
const Key& key; |
69 | 69 |
const typename _ReadMap::Key& own_key; |
70 | 70 |
const _ReadMap& m; |
71 |
Constraints() {} |
|
71 | 72 |
}; |
72 | 73 |
|
73 | 74 |
}; |
74 | 75 |
|
... | ... |
@@ -108,8 +109,9 @@ |
108 | 109 |
const Value& val; |
109 | 110 |
const typename _WriteMap::Key& own_key; |
110 | 111 |
const typename _WriteMap::Value& own_val; |
111 | 112 |
_WriteMap& m; |
113 |
Constraints() {} |
|
112 | 114 |
}; |
113 | 115 |
}; |
114 | 116 |
|
115 | 117 |
/// Read/writable map concept |
... | ... |
@@ -128,9 +130,10 @@ |
128 | 130 |
typedef T Value; |
129 | 131 |
|
130 | 132 |
/// Returns the value associated with the given key. |
131 | 133 |
Value operator[](const Key &) const { |
132 |
|
|
134 |
Value *r = 0; |
|
135 |
return *r; |
|
133 | 136 |
} |
134 | 137 |
|
135 | 138 |
/// Sets the value associated with the given key. |
136 | 139 |
void set(const Key &, const Value &) {} |
... | ... |
@@ -168,14 +171,16 @@ |
168 | 171 |
public: |
169 | 172 |
|
170 | 173 |
/// Returns a reference to the value associated with the given key. |
171 | 174 |
Reference operator[](const Key &) { |
172 |
|
|
175 |
Value *r = 0; |
|
176 |
return *r; |
|
173 | 177 |
} |
174 | 178 |
|
175 | 179 |
/// Returns a const reference to the value associated with the given key. |
176 | 180 |
ConstReference operator[](const Key &) const { |
177 |
|
|
181 |
Value *r = 0; |
|
182 |
return *r; |
|
178 | 183 |
} |
179 | 184 |
|
180 | 185 |
/// Sets the value associated with the given key. |
181 | 186 |
void set(const Key &k,const Value &t) { operator[](k)=t; } |
... | ... |
@@ -204,8 +209,9 @@ |
204 | 209 |
typename _ReferenceMap::Value& own_val; |
205 | 210 |
typename _ReferenceMap::Reference own_ref; |
206 | 211 |
typename _ReferenceMap::ConstReference own_cref; |
207 | 212 |
_ReferenceMap& m; |
213 |
Constraints() {} |
|
208 | 214 |
}; |
209 | 215 |
}; |
210 | 216 |
|
211 | 217 |
// @} |
... | ... |
@@ -167,8 +167,9 @@ |
167 | 167 |
ignore_unused_variable_warning(id); |
168 | 168 |
ignore_unused_variable_warning(ed); |
169 | 169 |
} |
170 | 170 |
_Path& p; |
171 |
PathDumperConstraints() {} |
|
171 | 172 |
}; |
172 | 173 |
|
173 | 174 |
template <typename _Digraph, typename _Path> |
174 | 175 |
struct PathDumperConstraints< |
... | ... |
@@ -192,8 +193,9 @@ |
192 | 193 |
ignore_unused_variable_warning(id); |
193 | 194 |
ignore_unused_variable_warning(ed); |
194 | 195 |
} |
195 | 196 |
_Path& p; |
197 |
PathDumperConstraints() {} |
|
196 | 198 |
}; |
197 | 199 |
|
198 | 200 |
} |
199 | 201 |
0 comments (0 inline)