COIN-OR::LEMON - Graph Library

source: lemon-1.0/NEWS @ 415:7faa990932a3

1.0 r1.0.5
Last change on this file since 415:7faa990932a3 was 411:50b6b66daafd, checked in by Alpar Juttner <alpar@…>, 14 years ago

Update NEWS file

File size: 5.1 KB
Line 
12010-03-08 Version 1.0.5 released
2
3        Bugfix release.
4
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
10
112009-05-05 Version 1.0.4 released
12
13        Bugfix release.
14
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)
19
202009-03-27 LEMON joins to the COIN-OR initiative
21
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
25        community.
26
272009-03-26 Version 1.0.3 released
28
29        Bugfix release, mainly targeting better AIX/xlC and WIN32
30        compatibility.
31
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
43       
442009-01-23 Version 1.0.2 released
45
46        Bugfix release.
47
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
59              (made by autotools).
60
612008-12-06 Version 1.0.1 released
62
63        Bugfix release.
64
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)
71                have been removed
72        #187: Remove DijkstraWidestPathOperationTraits
73        #61:  Bugfix in DfsVisit
74
752008-10-13 Version 1.0 released
76
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.
81
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)
87        * Other improvements
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)
92          * Algorithms
93            * breadth-first search (bfs.h)
94            * depth-first search (dfs.h)
95            * Dijkstra's algorithm (dijkstra.h)
96            * Kruskal's algorithm (kruskal.h)
97          * Data structures
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)
104          * Concepts
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,
108              concepts/path.h)
109          * Tools
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)
120          * Infrastructure
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)
Note: See TracBrowser for help on using the repository browser.