1 2010-03-08 Version 1.0.5 released
5 #250: Fix in pathSource() and pathTarget()
6 #321: Use pathCopy(from,to) instead of copyPath(to,from)
7 #330: Bug fix in map_extender.h
8 #335: Fix clear() function in ExtendFindEnum (#335)
9 #336: Fix the date field comment of graphToEps() output
11 2009-05-05 Version 1.0.4 released
15 #274,#280: Install lemon/config.h and fix its bad include by core.h
16 #275: Prefix macro names with LEMON_ in lemon/config.h
17 ----: Small script for making the release tarballs added
18 ----: Minor improvement in unify-sources.sh (a76f55d7d397)
20 2009-03-27 LEMON joins to the COIN-OR initiative
22 COIN-OR (Computational Infrastructure for Operations Research,
23 http://www.coin-or.org) project is an initiative to spur the
24 development of open-source software for the operations research
27 2009-03-26 Version 1.0.3 released
29 Bugfix release, mainly targeting better AIX/xlC and WIN32
32 ----: Minor clarification in the LICENSE file
33 ----: Add missing unistd.h include to time_measure.h
34 #204: Compilation bug fixed in graph_to_eps.h with VS2005
35 #214,#215: windows.h is never be included by lemon headers
36 #230: Build systems check the availability of 'long long' type
37 #229: Default implementation of Tolerance<> is used for integer types
38 #211,#212: Various fixes for compiling on AIX
39 ----: Improvements in CMAKE config
40 - docs is installed in share/doc/
41 - detects newer versions of Ghostscript
42 #239: Fix missing 'inline' specifier in time_measure.h
44 2009-01-23 Version 1.0.2 released
48 #193: Bugfix in GraphReader::skipSection()
49 #195: Bugfix in ConEdgeIt()
50 #197: Bugfix in heap unionfind
51 * This bug affects Edmond's general matching algorithms.
52 (Not available in this release.)
53 #207: Fix 'make install' without 'make html' using CMAKE
54 #208: Suppress or fix VS2008 compilation warnings
55 ----: Update the LEMON icon
56 ----: Enable the component-based installer
57 (in installers made by CPACK)
58 ----: Set the proper version for CMAKE in the tarballs
61 2008-12-06 Version 1.0.1 released
65 #170: Bugfix SmartDigraph::split()
66 #171: Bugfix in SmartGraph::restoreSnapshot()
67 #172: Extended test cases for graphs and digraphs
68 #173: Bugfix in Random
69 * operator()s always return a double now
70 * the faulty real<Num>(Num) and real<Num>(Num,Num)
72 #187: Remove DijkstraWidestPathOperationTraits
73 #61: Bugfix in DfsVisit
75 2008-10-13 Version 1.0 released
77 This is the first stable release of LEMON. Compared to the 0.x
78 release series, it features a considerably smaller but more
79 matured set of tools. The API has also completely revised and
80 changed in several places.
82 * The major name changes compared to the 0.x series (see the
83 Migration Guide in the doc for more details)
84 * Graph -> Digraph, UGraph -> Graph
85 * Edge -> Arc, UEdge -> Edge
86 * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
88 * Better documentation
89 * Reviewed and cleaned up codebase
90 * CMake based build system (along with the autotools based one)
91 * Contents of the library (ported from 0.x)
93 * breadth-first search (bfs.h)
94 * depth-first search (dfs.h)
95 * Dijkstra's algorithm (dijkstra.h)
96 * Kruskal's algorithm (kruskal.h)
98 * graph data structures (list_graph.h, smart_graph.h)
99 * path data structures (path.h)
100 * binary heap data structure (bin_heap.h)
101 * union-find data structures (unionfind.h)
102 * miscellaneous property maps (maps.h)
103 * two dimensional vector and bounding box (dim2.h)
105 * graph structure concepts (concepts/digraph.h, concepts/graph.h,
106 concepts/graph_components.h)
107 * concepts for other structures (concepts/heap.h, concepts/maps.h,
110 * Mersenne twister random number generator (random.h)
111 * tools for measuring cpu and wall clock time (time_measure.h)
112 * tools for counting steps and events (counter.h)
113 * tool for parsing command line arguments (arg_parser.h)
114 * tool for visualizing graphs (graph_to_eps.h)
115 * tools for reading and writing data in LEMON Graph Format
116 (lgf_reader.h, lgf_writer.h)
117 * tools to handle the anomalies of calculations with
118 floating point numbers (tolerance.h)
119 * tools to manage RGB colors (color.h)
121 * extended assertion handling (assert.h)
122 * exception classes and error handling (error.h)
123 * concept checking (concept_check.h)
124 * commonly used mathematical constants (math.h)