COIN-OR::LEMON - Graph Library

source: lemon-1.0/NEWS @ 407:2e9655402778

1.0 r1.0.4
Last change on this file since 407:2e9655402778 was 400:2c95c34b1e9e, checked in by Alpar Juttner <alpar@…>, 15 years ago

Update NEWS file

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