COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 545)

Ticket Owner Reporter Resolution Summary
#470 Alpar Juttner Alpar Juttner fixed "Unused locally defined typedef" warning with gcc 4.8
Description

The warnings look very stupid, but makes Maintainer more fail.

Is there a compiler pragma for switching off this warning locally?

/home/alpar/projects/LEMON/hg/cplex-comp/lemon/core.h:109:38: warning: typedef ‘OutArcIt’ locally defined but not used [-Wunused-local-typedefs]
   typedef typename Digraph::OutArcIt OutArcIt;                          \
                                      ^
/home/alpar/projects/LEMON/hg/cplex-comp/lemon/core.h:143:3: note: in expansion of macro ‘TEMPLATE_DIGRAPH_TYPEDEFS’
   TEMPLATE_DIGRAPH_TYPEDEFS(Graph);                                     \
   ^
/home/alpar/projects/LEMON/hg/cplex-comp/test/graph_test.cc:34:3: note: in expansion of macro ‘TEMPLATE_GRAPH_TYPEDEFS’
   TEMPLATE_GRAPH_TYPEDEFS(Graph);
   ^
/home/alpar/projects/LEMON/hg/cplex-comp/lemon/core.h:110:52: warning: typedef ‘BoolNodeMap’ locally defined but not used [-Wunused-local-typedefs]
   typedef typename Digraph::template NodeMap<bool> BoolNodeMap;         \
                                                    ^
#471 Alpar Juttner Alpar Juttner fixed graph_to_eps.h doesn't compile with clang (or with gcc 3.3)
Description

The changeset [115031ac8001] made grap_to_eps.h incompatible with clang++. (In fact it is a backout of the related change in [761fe0846f49]).

#476 Peter Kovacs Alpar Juttner fixed tsp_test fails (vector overindexing)
Description

tsp_test fails due to some `std::vector overindexing. It can be reproduced either

  • by running it under VS, where the range check is turned on in debug mode.
  • by running it with valgrind on linux.

Note that there LEMON has a TEST_WITH_VALGRIND cmake config parameter:

cmake -DCMAKE_BUILD_TYPE=Maintainer -DTEST_WITH_VALGRIND=YES ..
make
Note: See TracQuery for help on using queries.