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