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