LEMON is an open source graph library written in C++ language providing implementation of common data structures and algorithms with focus on optimization problems in graphs and networks. The library is part of the COIN-OR project.
LEMON is an abbreviation of Library for Efficient Modeling and Optimization in Networks.
LEMON employs genericity in C++ by using templates. The tools of the library are designed to be versatile, convenient and highly ...
more
LEMON is an open source graph library written in C++ language providing implementation of common data structures and algorithms with focus on optimization problems in graphs and networks. The library is part of the COIN-OR project.
LEMON is an abbreviation of Library for Efficient Modeling and Optimization in Networks.
LEMON employs genericity in C++ by using templates. The tools of the library are designed to be versatile, convenient and highly efficient. They can be combined easily to solve complex real-life optimization problems. For example, LEMON’s graphs can differ in many ways (depending on the representation and other specialities), but all have to satisfy one or more graph concepts, which are standardized interfaces to work with the rest of the library.
LEMON provides
LEMON also contains some metaheuristic optimization tools and provides a general high-level interface for several LP and MIP solvers, such as GLPK, ILOG CPLEX, CLP, CBC, SoPlex.
LEMON has its own graph storing...
less