alpar@505
|
1 |
2009-01-23 Version 1.0.2 released
|
alpar@505
|
2 |
|
alpar@505
|
3 |
Bugfix release.
|
alpar@505
|
4 |
|
alpar@505
|
5 |
#193: Bugfix in GraphReader::skipSection()
|
alpar@505
|
6 |
#195: Bugfix in ConEdgeIt()
|
alpar@505
|
7 |
#197: Bugfix in heap unionfind
|
alpar@505
|
8 |
* This bug affects Edmond's general matching algorithms.
|
alpar@505
|
9 |
(Not available in this release.)
|
alpar@505
|
10 |
#207: Fix 'make install' without 'make html' using CMAKE
|
alpar@505
|
11 |
#208: Suppress or fix VS2008 compilation warnings
|
alpar@505
|
12 |
----: Update the LEMON icon
|
alpar@505
|
13 |
----: Enable the component-based installer
|
alpar@505
|
14 |
(in installers made by CPACK)
|
alpar@505
|
15 |
----: Set the proper version for CMAKE in the tarballs
|
alpar@505
|
16 |
(made by autotools).
|
alpar@505
|
17 |
|
alpar@440
|
18 |
2008-12-06 Version 1.0.1 released
|
alpar@440
|
19 |
|
alpar@440
|
20 |
Bugfix release.
|
alpar@440
|
21 |
|
alpar@440
|
22 |
#170: Bugfix SmartDigraph::split()
|
alpar@440
|
23 |
#171: Bugfix in SmartGraph::restoreSnapshot()
|
alpar@440
|
24 |
#172: Extended test cases for graphs and digraphs
|
alpar@440
|
25 |
#173: Bugfix in Random
|
alpar@440
|
26 |
* operator()s always return a double now
|
alpar@440
|
27 |
* the faulty real<Num>(Num) and real<Num>(Num,Num)
|
alpar@440
|
28 |
have been removed
|
alpar@440
|
29 |
#187: Remove DijkstraWidestPathOperationTraits
|
alpar@440
|
30 |
#61: Bugfix in DfsVisit
|
alpar@440
|
31 |
|
alpar@322
|
32 |
2008-10-13 Version 1.0 released
|
alpar@262
|
33 |
|
alpar@262
|
34 |
This is the first stable release of LEMON. Compared to the 0.x
|
alpar@262
|
35 |
release series, it features a considerably smaller but more
|
alpar@262
|
36 |
matured set of tools. The API has also completely revised and
|
alpar@262
|
37 |
changed in several places.
|
alpar@262
|
38 |
|
alpar@322
|
39 |
* The major name changes compared to the 0.x series (see the
|
alpar@322
|
40 |
Migration Guide in the doc for more details)
|
alpar@262
|
41 |
* Graph -> Digraph, UGraph -> Graph
|
alpar@262
|
42 |
* Edge -> Arc, UEdge -> Edge
|
alpar@262
|
43 |
* source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
|
alpar@262
|
44 |
* Other improvements
|
alpar@262
|
45 |
* Better documentation
|
alpar@262
|
46 |
* Reviewed and cleaned up codebase
|
alpar@262
|
47 |
* CMake based build system (along with the autotools based one)
|
alpar@262
|
48 |
* Contents of the library (ported from 0.x)
|
alpar@262
|
49 |
* Algorithms
|
alpar@262
|
50 |
* breadth-first search (bfs.h)
|
alpar@262
|
51 |
* depth-first search (dfs.h)
|
alpar@262
|
52 |
* Dijkstra's algorithm (dijkstra.h)
|
alpar@262
|
53 |
* Kruskal's algorithm (kruskal.h)
|
alpar@262
|
54 |
* Data structures
|
alpar@262
|
55 |
* graph data structures (list_graph.h, smart_graph.h)
|
alpar@262
|
56 |
* path data structures (path.h)
|
alpar@262
|
57 |
* binary heap data structure (bin_heap.h)
|
alpar@262
|
58 |
* union-find data structures (unionfind.h)
|
alpar@262
|
59 |
* miscellaneous property maps (maps.h)
|
alpar@262
|
60 |
* two dimensional vector and bounding box (dim2.h)
|
alpar@262
|
61 |
* Concepts
|
alpar@262
|
62 |
* graph structure concepts (concepts/digraph.h, concepts/graph.h,
|
alpar@262
|
63 |
concepts/graph_components.h)
|
alpar@262
|
64 |
* concepts for other structures (concepts/heap.h, concepts/maps.h,
|
alpar@262
|
65 |
concepts/path.h)
|
alpar@262
|
66 |
* Tools
|
alpar@262
|
67 |
* Mersenne twister random number generator (random.h)
|
alpar@262
|
68 |
* tools for measuring cpu and wall clock time (time_measure.h)
|
alpar@262
|
69 |
* tools for counting steps and events (counter.h)
|
alpar@262
|
70 |
* tool for parsing command line arguments (arg_parser.h)
|
alpar@262
|
71 |
* tool for visualizing graphs (graph_to_eps.h)
|
alpar@262
|
72 |
* tools for reading and writing data in LEMON Graph Format
|
alpar@262
|
73 |
(lgf_reader.h, lgf_writer.h)
|
alpar@262
|
74 |
* tools to handle the anomalies of calculations with
|
alpar@262
|
75 |
floating point numbers (tolerance.h)
|
alpar@262
|
76 |
* tools to manage RGB colors (color.h)
|
alpar@262
|
77 |
* Infrastructure
|
alpar@262
|
78 |
* extended assertion handling (assert.h)
|
alpar@262
|
79 |
* exception classes and error handling (error.h)
|
alpar@262
|
80 |
* concept checking (concept_check.h)
|
alpar@262
|
81 |
* commonly used mathematical constants (math.h)
|