alpar@1661
|
1 |
2005-08-27 Alpar Juttner <alpar@cs.elte.hu>
|
alpar@1609
|
2 |
|
alpar@1609
|
3 |
* Version 0.4 Released
|
alpar@1609
|
4 |
* List of new features and changes
|
alpar@1609
|
5 |
* Changed naming:
|
alpar@1609
|
6 |
Wrapper -> Adaptor
|
alpar@1609
|
7 |
kruskalEdgeMap() -> kruskal()
|
alpar@1609
|
8 |
kruskalEdgeMap_IteratorOut() -> kruskal()
|
alpar@1609
|
9 |
* BoundinBox<>
|
alpar@1609
|
10 |
* operator+=() -> add()
|
alpar@1609
|
11 |
+ clear()
|
alpar@1655
|
12 |
+ More and better graph I/O functionalities
|
alpar@1609
|
13 |
+ High level uniform LP solver interface to CPLEX and GLKP
|
alpar@1609
|
14 |
* graphToEps()
|
alpar@1609
|
15 |
+ Automatic node size and edge width scaling
|
alpar@1609
|
16 |
+ Simple color palette tool (ColorSet)
|
alpar@1609
|
17 |
* Bfs/Dfs/Dijkstra
|
alpar@1609
|
18 |
+ Step-by-step execution
|
alpar@1609
|
19 |
+ Run from multiple sources
|
alpar@1609
|
20 |
+ Used define stop condition
|
alpar@1609
|
21 |
+ Improved "named parameters"
|
alpar@1609
|
22 |
* Preflow
|
alpar@1609
|
23 |
+ Function type interface
|
alpar@1609
|
24 |
+ Changed interface
|
alpar@1609
|
25 |
* ListGraph/SmarGraph
|
alpar@1609
|
26 |
+ slit() splits a node
|
alpar@1609
|
27 |
+ SnapShot
|
alpar@1609
|
28 |
+ New map adaptors
|
alpar@1609
|
29 |
+ New convenience maps
|
alpar@1609
|
30 |
+ IdMap, DescriptorMap
|
alpar@1609
|
31 |
+ InDegMap, OutDegMap
|
alpar@1609
|
32 |
+ XMap, YMap
|
alpar@1609
|
33 |
+ Default graph maps are iterable
|
alpar@1655
|
34 |
+ glemon: a graph editor
|
alpar@1655
|
35 |
+ Some new demo codes added, the old ones got polished.
|
alpar@1609
|
36 |
* Better documentation
|
alpar@1661
|
37 |
* Several importan bugfixes
|
alpar@1661
|
38 |
* Now lemon should compile witout warnings with
|
alpar@1661
|
39 |
* gcc 3.3, 3.4, 4.0
|
alpar@1661
|
40 |
* Intel C++ Compiler v9.0
|
alpar@1609
|
41 |
|
alpar@1609
|
42 |
2005-03-19 Alpar Juttner <alpar@cs.elte.hu>
|
alpar@1609
|
43 |
|
alpar@1609
|
44 |
* Version 0.3.1 Released
|
alpar@1609
|
45 |
* This release fixes a compilation failure bug under cygwin.
|
alpar@1609
|
46 |
|
alpar@1162
|
47 |
2005-02-21 Alpar Juttner <alpar@cs.elte.hu>
|
alpar@1162
|
48 |
|
alpar@1162
|
49 |
* Version 0.3 released
|
alpar@1162
|
50 |
* List of new features and changes
|
alpar@1162
|
51 |
* Redesigned Graph infrastructures
|
alpar@1162
|
52 |
+ Standardized LEMON exceptions
|
alpar@1162
|
53 |
+ Undirected Graph
|
alpar@1162
|
54 |
+ Standard graph file format, input and output classes for it.
|
alpar@1162
|
55 |
* head() -> target(), tail() -> source()
|
alpar@1162
|
56 |
* Some standard namings have changes:
|
alpar@1162
|
57 |
ValueType -> Value,
|
alpar@1162
|
58 |
KeyType -> Key,
|
alpar@1162
|
59 |
ReferenceType ->Reference,
|
alpar@1162
|
60 |
PointerType -> Pointer
|
alpar@1162
|
61 |
+ GraphToEps: A simple graph drawer
|
alpar@1162
|
62 |
* Better documentation
|
alpar@987
|
63 |
|
alpar@928
|
64 |
2004-09-30 Alpar Juttner <alpar@cs.elte.hu>
|
alpar@928
|
65 |
|
alpar@928
|
66 |
* Version 0.2 released
|
alpar@928
|
67 |
|