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

	
3
        Bugfix release.
4

	
5
        #392: Bug fix in Dfs::start(s,t)
6
        #414: Fix wrong initialization in Preflow
7
        #404: Update Doxygen configuration
8
        #416: Support tests with valgrind
9
        #418: Better Win CodeBlock/MinGW support
10
        #419: Backport build environment improvements from the main branch
11
              - Build of mip_test and lp_test precede the running of the tests
12
              - Also search for coin libs under ${COIN_ROOT_DIR}/lib/coin
13
              - Do not look for COIN_VOL libraries
14
        #382: Allow lgf file without Arc maps
15
        
1 16
2010-10-21 Version 1.1.3 released
2 17

	
3 18
        Bugfix release.
4 19

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

	
9 24
        #356: Fix multiple execution bug in weighted matchings
10 25
        #364: Add missing UndirectedTags
11 26
        #368: Fix the usage of std::numeric_limits<>::min() in Network Simplex
12 27
        #372: Fix a critical bug in preflow
13 28

	
14 29
2010-03-08 Version 1.1.2 released
15 30

	
16 31
        Bugfix release.
17 32

	
18 33
        #317: Fix (and improve) error message in mip_test.cc
19 34
              Remove unnecessary OsiCbc dependency
20 35
        #250: Fix in pathSource() and pathTarget()
21 36
        #322: Distribute LEMONConfig.cmake.in
22 37
        #321: Use pathCopy(from,to) instead of copyPath(to,from)
23 38
        #330: Bug fix in map_extender.h
24 39
        #335: Fix clear() function in ExtendFindEnum
25 40
        #337: Use void* as LPX object pointer
26 41
        #336: Fix the date field comment of graphToEps() output
27 42
        #323: Bug fix in Suurballe
28 43

	
29 44
2009-10-03 Version 1.1.1 released
30 45

	
31 46
        Bugfix release.
32 47

	
33 48
        #295: Suppress MSVC warnings using pragmas
34 49
        ----: Various CMAKE related improvements
35 50
              * Remove duplications from doc/CMakeLists.txt
36 51
              * Rename documentation install folder from 'docs' to 'html'
37 52
              * Add tools/CMakeLists.txt to the tarball
38 53
              * Generate and install LEMONConfig.cmake
39 54
              * Change the label of the html project in Visual Studio
40 55
              * Fix the check for the 'long long' type
41 56
              * Put the version string into config.h
42 57
              * Minor CMake improvements
43 58
              * Set the version to 'hg-tip' if everything fails
44 59
        #311: Add missing 'explicit' keywords
45 60
        #302: Fix the implementation and doc of CrossRefMap
46 61
        #308: Remove duplicate list_graph.h entry from source list
47 62
        #307: Bug fix in Preflow and Circulation
48 63

	
49 64
2009-05-13 Version 1.1 released
50 65

	
51 66
        This is the second stable release of the 1.x series. It
52 67
        features a better coverage of the tools available in the 0.x
53 68
        series, a thoroughly reworked LP/MIP interface plus various
54 69
        improvements in the existing tools.
55 70

	
56 71
        * Much improved M$ Windows support
57 72
          * Various improvements in the CMAKE build system
58 73
          * Compilation warnings are fixed/suppressed
59 74
        * Support IBM xlC compiler
60 75
        * New algorithms
61 76
          * Connectivity related algorithms (#61)
62 77
          * Euler walks (#65)
63 78
          * Preflow push-relabel max. flow algorithm (#176)
64 79
          * Circulation algorithm (push-relabel based) (#175)
65 80
          * Suurballe algorithm (#47)
66 81
          * Gomory-Hu algorithm (#66)
67 82
          * Hao-Orlin algorithm (#58)
68 83
          * Edmond's maximum cardinality and weighted matching algorithms
69 84
            in general graphs (#48,#265)
70 85
          * Minimum cost arborescence/branching (#60)
71 86
          * Network Simplex min. cost flow algorithm (#234)
72 87
        * New data structures
73 88
          * Full graph structure (#57)
74 89
          * Grid graph structure (#57)
75 90
          * Hypercube graph structure (#57)
76 91
          * Graph adaptors (#67)
77 92
          * ArcSet and EdgeSet classes (#67)
78 93
          * Elevator class (#174)
79 94
        * Other new tools
80 95
          * LP/MIP interface (#44)
81 96
            * Support for GLPK, CPLEX, Soplex, COIN-OR CLP and CBC
82 97
          * Reader for the Nauty file format (#55)
83 98
          * DIMACS readers (#167)
84 99
          * Radix sort algorithms (#72)
85 100
          * RangeIdMap and CrossRefMap (#160)
86 101
        * New command line tools
87 102
          * DIMACS to LGF converter (#182)
88 103
          * lgf-gen - a graph generator (#45)
89 104
          * DIMACS solver utility (#226)
90 105
        * Other code improvements
91 106
          * Lognormal distribution added to Random (#102)
92 107
          * Better (i.e. O(1) time) item counting in SmartGraph (#3)
93 108
          * The standard maps of graphs are guaranteed to be
94 109
            reference maps (#190)
95 110
        * Miscellaneous
96 111
          * Various doc improvements
97 112
          * Improved 0.x -> 1.x converter script
98 113

	
99 114
        * Several bugfixes (compared to release 1.0):
100 115
          #170: Bugfix SmartDigraph::split()
101 116
          #171: Bugfix in SmartGraph::restoreSnapshot()
102 117
          #172: Extended test cases for graphs and digraphs
103 118
          #173: Bugfix in Random
104 119
                * operator()s always return a double now
105 120
                * the faulty real<Num>(Num) and real<Num>(Num,Num)
106 121
                  have been removed
107 122
          #187: Remove DijkstraWidestPathOperationTraits
108 123
          #61:  Bugfix in DfsVisit
109 124
          #193: Bugfix in GraphReader::skipSection()
110 125
          #195: Bugfix in ConEdgeIt()
111 126
          #197: Bugfix in heap unionfind
112 127
                * This bug affects Edmond's general matching algorithms
113 128
          #207: Fix 'make install' without 'make html' using CMAKE
114 129
          #208: Suppress or fix VS2008 compilation warnings
115 130
          ----: Update the LEMON icon
116 131
          ----: Enable the component-based installer
117 132
                (in installers made by CPACK)
118 133
          ----: Set the proper version for CMAKE in the tarballs
119 134
                (made by autotools)
120 135
          ----: Minor clarification in the LICENSE file
121 136
          ----: Add missing unistd.h include to time_measure.h
122 137
          #204: Compilation bug fixed in graph_to_eps.h with VS2005
123 138
          #214,#215: windows.h should never be included by lemon headers
124 139
          #230: Build systems check the availability of 'long long' type
125 140
          #229: Default implementation of Tolerance<> is used for integer types
126 141
          #211,#212: Various fixes for compiling on AIX
127 142
          ----: Improvements in CMAKE config
128 143
                - docs is installed in share/doc/
129 144
                - detects newer versions of Ghostscript
130 145
          #239: Fix missing 'inline' specifier in time_measure.h
131 146
          #274,#280: Install lemon/config.h
132 147
          #275: Prefix macro names with LEMON_ in lemon/config.h
133 148
          ----: Small script for making the release tarballs added
134 149
          ----: Minor improvement in unify-sources.sh (a76f55d7d397)
135 150

	
136 151
2009-03-27 LEMON joins to the COIN-OR initiative
137 152

	
138 153
        COIN-OR (Computational Infrastructure for Operations Research,
139 154
        http://www.coin-or.org) project is an initiative to spur the
140 155
        development of open-source software for the operations research
141 156
        community.
142 157

	
143 158
2008-10-13 Version 1.0 released
144 159

	
145 160
	This is the first stable release of LEMON. Compared to the 0.x
146 161
	release series, it features a considerably smaller but more
147 162
	matured set of tools. The API has also completely revised and
148 163
	changed in several places.
149 164

	
150 165
	* The major name changes compared to the 0.x series (see the
151 166
          Migration Guide in the doc for more details)
152 167
          * Graph -> Digraph, UGraph -> Graph
153 168
          * Edge -> Arc, UEdge -> Edge
154 169
	  * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
155 170
	* Other improvements
156 171
	  * Better documentation
157 172
	  * Reviewed and cleaned up codebase
158 173
	  * CMake based build system (along with the autotools based one)
159 174
	* Contents of the library (ported from 0.x)
160 175
	  * Algorithms
161 176
       	    * breadth-first search (bfs.h)
162 177
       	    * depth-first search (dfs.h)
163 178
       	    * Dijkstra's algorithm (dijkstra.h)
164 179
       	    * Kruskal's algorithm (kruskal.h)
165 180
    	  * Data structures
166 181
       	    * graph data structures (list_graph.h, smart_graph.h)
167 182
       	    * path data structures (path.h)
168 183
       	    * binary heap data structure (bin_heap.h)
169 184
       	    * union-find data structures (unionfind.h)
170 185
       	    * miscellaneous property maps (maps.h)
171 186
       	    * two dimensional vector and bounding box (dim2.h)
172 187
          * Concepts
173 188
       	    * graph structure concepts (concepts/digraph.h, concepts/graph.h,
174 189
              concepts/graph_components.h)
175 190
       	    * concepts for other structures (concepts/heap.h, concepts/maps.h,
176 191
	      concepts/path.h)
177 192
    	  * Tools
178 193
       	    * Mersenne twister random number generator (random.h)
179 194
       	    * tools for measuring cpu and wall clock time (time_measure.h)
180 195
       	    * tools for counting steps and events (counter.h)
181 196
       	    * tool for parsing command line arguments (arg_parser.h)
182 197
       	    * tool for visualizing graphs (graph_to_eps.h)
183 198
       	    * tools for reading and writing data in LEMON Graph Format
184 199
              (lgf_reader.h, lgf_writer.h)
185 200
            * tools to handle the anomalies of calculations with
186 201
	      floating point numbers (tolerance.h)
187 202
            * tools to manage RGB colors (color.h)
188 203
    	  * Infrastructure
189 204
       	    * extended assertion handling (assert.h)
190 205
       	    * exception classes and error handling (error.h)
191 206
      	    * concept checking (concept_check.h)
192 207
       	    * commonly used mathematical constants (math.h)
0 comments (0 inline)