Changeset 1248:14394c9603c2 in lemon
- Timestamp:
- 08/06/13 12:19:11 (11 years ago)
- Branch:
- 1.1
- Parents:
- 1243:79f149ee0230 (diff), 1247:115031ac8001 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/core.h
r1237 r1248 39 39 40 40 #ifdef __GNUC__ 41 #define GCC_VERSION (__GNUC__ * 10000 \ 42 + __GNUC_MINOR__ * 100 \ 43 + __GNUC_PATCHLEVEL__) 44 #endif 45 46 #if GCC_VERSION >= 40800 41 47 // Needed by the [DI]GRAPH_TYPEDEFS marcos for gcc 4.8 42 48 #pragma GCC diagnostic ignored "-Wunused-local-typedefs" -
lemon/core.h
r1246 r1248 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2011 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 1253 1253 protected: 1254 1254 1255 class AutoNodeMap : public ItemSetTraits<GR, Node>::template Map<Arc>::Type { 1255 class AutoNodeMap : 1256 public ItemSetTraits<GR, Node>::template Map<Arc>::Type { 1256 1257 typedef typename ItemSetTraits<GR, Node>::template Map<Arc>::Type Parent; 1257 1258 … … 1292 1293 }; 1293 1294 1294 protected: 1295 protected: 1295 1296 1296 1297 const Digraph &_g; -
lemon/graph_to_eps.h
r1158 r1248 223 223 using T::_copyright; 224 224 225 using typenameT::NodeTextColorType;225 using T::NodeTextColorType; 226 226 using T::CUST_COL; 227 227 using T::DIST_COL; -
lemon/graph_to_eps.h
r1247 r1248 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2011 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). -
test/lp_test.cc
r1237 r1248 199 199 c = c <= 4; 200 200 LP::Constr c2; 201 #if ( __GNUC__ == 4 ) && ( __GNUC_MINOR__ == 3 ) 202 c2 = ( -3 <= v ) <= 4; 203 #else 201 204 c2 = -3 <= v <= 4; 205 #endif 206 202 207 } 203 208 -
test/lp_test.cc
r1247 r1248 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2011 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
Note: See TracChangeset
for help on using the changeset viewer.