COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (142 - 144 of 545)

Ticket Resolution Summary Owner Reporter
#199 fixed std::isnan() is not available with all compiler Alpar Juttner Alpar Juttner
Description

std::isnan() is not provided by some compiler, such as VS2005 and icc-10.1.

We should provide an own implementation like this:

    inline bool isnan(double v)
    {
      return v!=v;
    }

Of course, this function can optionally use std::isnan() if it is available.

#206 fixed Support for GLPK using CMAKE build env. Akos Ladanyi Alpar Juttner
Description

GLPK has a quite up-to-date Windows installer, thus LEMON should support it.

#207 fixed Cannot install with CMAKE if doc is not (e.g. cannot be) generated Akos Ladanyi Alpar Juttner
Description

For installing lemon using CMAKE, the doc must also be built.

If would be nice if

  • the install}} target depended on the {{{html target, so make install would automatically create it
  • the html target did nothing but created the html directory when Doxygen or Ghostscript is not available.
Note: See TracQuery for help on using queries.