gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Update NEWS file
0 1 0
1.0
1 file changed with 8 insertions and 0 deletions:
8
↑ Collapse diff ↑
Ignore white space 384 line context
1
2011-08-08 Version 1.0.7 released
2

	
3
        Release series 1.0 has reached its end of life. This is the last
4
        bugfix release in that series.
5

	
6
        #382: Allow lgf files without Arc maps
7
        #392: Bug fix in Dfs::start(s,t)
8

	
1 9
2010-10-21 Version 1.0.6 released
2 10

	
3 11
        Bugfix release.
4 12

	
5 13
        #366: Fix Pred[Matrix]MapPath::empty()
6 14
        #371: Bug fix in (di)graphCopy()
7 15
              The target graph is cleared before adding nodes and arcs/edges.
8 16

	
9 17

	
10 18
2010-03-08 Version 1.0.5 released
11 19

	
12 20
        Bugfix release.
13 21

	
14 22
        #250: Fix in pathSource() and pathTarget()
15 23
        #321: Use pathCopy(from,to) instead of copyPath(to,from)
16 24
        #330: Bug fix in map_extender.h
17 25
        #335: Fix clear() function in ExtendFindEnum (#335)
18 26
        #336: Fix the date field comment of graphToEps() output
19 27

	
20 28
2009-05-05 Version 1.0.4 released
21 29

	
22 30
        Bugfix release.
23 31

	
24 32
        #274,#280: Install lemon/config.h and fix its bad include by core.h
25 33
        #275: Prefix macro names with LEMON_ in lemon/config.h
26 34
        ----: Small script for making the release tarballs added
27 35
        ----: Minor improvement in unify-sources.sh (a76f55d7d397)
28 36

	
29 37
2009-03-27 LEMON joins to the COIN-OR initiative
30 38

	
31 39
        COIN-OR (Computational Infrastructure for Operations Research,
32 40
        http://www.coin-or.org) project is an initiative to spur the
33 41
        development of open-source software for the operations research
34 42
        community.
35 43

	
36 44
2009-03-26 Version 1.0.3 released
37 45

	
38 46
        Bugfix release, mainly targeting better AIX/xlC and WIN32
39 47
        compatibility.
40 48

	
41 49
        ----: Minor clarification in the LICENSE file
42 50
        ----: Add missing unistd.h include to time_measure.h
43 51
        #204: Compilation bug fixed in graph_to_eps.h with VS2005
44 52
        #214,#215: windows.h is never be included by lemon headers
45 53
        #230: Build systems check the availability of 'long long' type
46 54
        #229: Default implementation of Tolerance<> is used for integer types
47 55
        #211,#212: Various fixes for compiling on AIX
48 56
        ----: Improvements in CMAKE config
49 57
              - docs is installed in share/doc/
50 58
              - detects newer versions of Ghostscript
51 59
        #239: Fix missing 'inline' specifier in time_measure.h
52 60
        
53 61
2009-01-23 Version 1.0.2 released
54 62

	
55 63
        Bugfix release.
56 64

	
57 65
        #193: Bugfix in GraphReader::skipSection()
58 66
        #195: Bugfix in ConEdgeIt()
59 67
        #197: Bugfix in heap unionfind
60 68
              * This bug affects Edmond's general matching algorithms.
61 69
                (Not available in this release.)
62 70
        #207: Fix 'make install' without 'make html' using CMAKE
63 71
        #208: Suppress or fix VS2008 compilation warnings
64 72
        ----: Update the LEMON icon
65 73
        ----: Enable the component-based installer
66 74
              (in installers made by CPACK)
67 75
        ----: Set the proper version for CMAKE in the tarballs
68 76
              (made by autotools).
69 77

	
70 78
2008-12-06 Version 1.0.1 released
71 79

	
72 80
        Bugfix release.
73 81

	
74 82
        #170: Bugfix SmartDigraph::split()
75 83
        #171: Bugfix in SmartGraph::restoreSnapshot()
76 84
        #172: Extended test cases for graphs and digraphs
77 85
        #173: Bugfix in Random
78 86
              * operator()s always return a double now
79 87
              * the faulty real<Num>(Num) and real<Num>(Num,Num)
80 88
                have been removed
81 89
        #187: Remove DijkstraWidestPathOperationTraits
82 90
        #61:  Bugfix in DfsVisit
83 91

	
84 92
2008-10-13 Version 1.0 released
85 93

	
86 94
	This is the first stable release of LEMON. Compared to the 0.x
87 95
	release series, it features a considerably smaller but more
88 96
	matured set of tools. The API has also completely revised and
89 97
	changed in several places.
90 98

	
91 99
	* The major name changes compared to the 0.x series (see the
92 100
          Migration Guide in the doc for more details)
93 101
          * Graph -> Digraph, UGraph -> Graph
94 102
          * Edge -> Arc, UEdge -> Edge
95 103
	  * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
96 104
	* Other improvements
97 105
	  * Better documentation
98 106
	  * Reviewed and cleaned up codebase
99 107
	  * CMake based build system (along with the autotools based one)
100 108
	* Contents of the library (ported from 0.x)
101 109
	  * Algorithms
102 110
       	    * breadth-first search (bfs.h)
103 111
       	    * depth-first search (dfs.h)
104 112
       	    * Dijkstra's algorithm (dijkstra.h)
105 113
       	    * Kruskal's algorithm (kruskal.h)
106 114
    	  * Data structures
107 115
       	    * graph data structures (list_graph.h, smart_graph.h)
108 116
       	    * path data structures (path.h)
109 117
       	    * binary heap data structure (bin_heap.h)
110 118
       	    * union-find data structures (unionfind.h)
111 119
       	    * miscellaneous property maps (maps.h)
112 120
       	    * two dimensional vector and bounding box (dim2.h)
113 121
          * Concepts
114 122
       	    * graph structure concepts (concepts/digraph.h, concepts/graph.h,
115 123
              concepts/graph_components.h)
116 124
       	    * concepts for other structures (concepts/heap.h, concepts/maps.h,
117 125
	      concepts/path.h)
118 126
    	  * Tools
119 127
       	    * Mersenne twister random number generator (random.h)
120 128
       	    * tools for measuring cpu and wall clock time (time_measure.h)
121 129
       	    * tools for counting steps and events (counter.h)
122 130
       	    * tool for parsing command line arguments (arg_parser.h)
123 131
       	    * tool for visualizing graphs (graph_to_eps.h)
124 132
       	    * tools for reading and writing data in LEMON Graph Format
125 133
              (lgf_reader.h, lgf_writer.h)
126 134
            * tools to handle the anomalies of calculations with
127 135
	      floating point numbers (tolerance.h)
128 136
            * tools to manage RGB colors (color.h)
129 137
    	  * Infrastructure
130 138
       	    * extended assertion handling (assert.h)
131 139
       	    * exception classes and error handling (error.h)
132 140
      	    * concept checking (concept_check.h)
133 141
       	    * commonly used mathematical constants (math.h)
0 comments (0 inline)