COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 545)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#433 done Support for building shared library Akos Ladanyi Alpar Juttner
Description

it needs a single line change in lemon/CMakeLists.txt:

diff --git a/lemon/CMakeLists.txt b/lemon/CMakeLists.txt
--- a/lemon/CMakeLists.txt
+++ b/lemon/CMakeLists.txt
@@ -57,6 +57,7 @@
 INSTALL(
   TARGETS lemon
   ARCHIVE DESTINATION lib
+  LIBRARY DESTINATION lib
   COMPONENT library
 )

(This could be added to the repo by default.)

Then, you can build shared library by:

cmake -DBUILD_SHARED_LIBS=yes ..
#465 done Better CMAKE config for the LP tools Akos Ladanyi Alpar Juttner
Description

The following two CMAKE config settings would especially nice when LEMON is used as a subproject:

  • enable/disable each LP backend individually from CMAKE config.
  • set the default LP backend.
#11 fixed Preflow and Tolerance Peter Kovacs Alpar Juttner
Description

The Tolerance can cause a bug in the Preflow algorithm. If there is no edge with epsilon or more capacity the source node can have surely positive excess. I think the algorithm should revised with the tolerance class and it would be nice to prove the correctness and the time complexity of the algorithm with tolerance.

The test generator could be found in my home dir.

This ticket is a copy of report #57 of the old bug tracking system. It refers to svn trunk -r3101. The original report was posted by Balazs Dezso.

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.