File: CHANGES

package info (click to toggle)
haskell-fgl 5.4.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 256 kB
  • ctags: 2
  • sloc: haskell: 2,050; makefile: 4
file content (120 lines) | stat: -rw-r--r-- 3,462 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
CHANGES (FGL/HASKELL, Version: November 2008)
---------------------------------------------


November 2008
-------------
* Bugfix in Graphviz.sq


June 2008
---------
* bug fix in bcc by Reid Barton
* added new dynamic graph implementation: 
  Data.Graph.Inductive.PatriciaTree (thanks to Pho)
* added test/benchmark.hs: a benchmark to compare Tree and PatriciaTree
  implementations (thanks to Pho)


May 2008
--------
* added Setup.hs to tar file
* reimplementation of Data.Graph.Inductive.Query.Dominators
  by Bertram Felgenhauer:
  It was buggy and very slow for large graphs. See
      http://www.haskell.org/pipermail/haskell-cafe/2008-April/041739.html
  This patch also adds a new function, iDom, that returns the immediate
  dominators of the graph nodes.
* Exported xdf*With functions from DFS.hs
* many little cleanups thanks to many people 
  (use 'darcs changes' to see the details)


April 2007
----------
* changed the implementation for inspection functions (suc, pred, ...)
  to correct the behavior in the presence of loops 
  (thanks to Ralf Juengling for pointing out the inconsistency)


June 2006
---------
* fixed a bug in findP (thanks to lnagy@fit.edu)
* added function delLEdge in Graph.hs (thanks to Jose Labra)
* changed implementation of updFM and mkGraph (thanks to Don Stewart)


February 2005
-------------
* fixed an import error in Basic.hs 
* removed Eq instance of gr because it caused overlapping instance problems.
  Instead the function equal defined in Graph.hs can be used
* added some more functions to the export list of DFS.hs
* changed the definition of LPath into a newtype to avoid
  overlapping instances with lists
* fixed the Makefile (for GHC and GHCi)


January 2004
------------
* bug fix for nearestNode (src/Data/Graph/Inductive/Query/GVD.hs)
Update contributed by Aetion Technologies LLC (www.aetion.com)
* Refactor into hierarchical namespace
* Build changes:
  - build a standard haskell library (libHSfgl.a, HSfgl.o)
  - install as ghc package (fgl), uses Auto so no -package is needed
* Automatic Node generation for labels: Data.Graph.Inductive.NodeMap
* Graphviz output: Data.Graph.Inductive.Graphviz


September 2002
--------------
* Introduction of graph classes
* Monadic graphs and graph computation monad
* Graph implementation based on balanced (AVL) trees  
* Fast graph implementation based on IO arrays
* New algorithms:
  - Maximum flow
  - Articulation points
  - biconnected components
  - dominators
  - transitive closure
* minor changes in utility functions
  - changed signatures (swapped order of arguments) of 
    functions context and lab to be consistent with other graph functions
  - changed function first in RootPath: not existing path is now reported 
    as an empty list and will not produce an error
  - esp version that returns a list of labeled edges
    (to find minimum label in maxflow algorithm)
  - BFS uses amortized O(1) queue
  - Heap stores key and value separately
  - ...


March 2001
----------
* Changes to User Guide
* a couple of new functions
* some internal changes


April 2000
----------
* User Guide
* Systematic structure for all depth-first search functions
* Graph Voronoi diagram
* Several small changes and additions in utility functions


February 2000
-------------
* Representation for inward-directed trees
* Breadth-first search
* Dijkstra's algorithm
* Minimum-spanning-tree algorithm


August 1999
-----------
* First Haskell version