NEWS
author Alpar Juttner <alpar@cs.elte.hu>
Tue, 21 Sep 2010 06:19:04 +0200
branch1.0
changeset 419 66aafc8c62d6
parent 411 50b6b66daafd
child 426 8276e0ee48b1
permissions -rw-r--r--
LEMON 1.0.6 released (7d26a96745f7 tagged as r1.0.6)
     1 2010-10-21 Version 1.0.6 released
     2 
     3         Bugfix release.
     4 
     5         #366: Fix Pred[Matrix]MapPath::empty()
     6         #371: Bug fix in (di)graphCopy()
     7               The target graph is cleared before adding nodes and arcs/edges.
     8 
     9 
    10 2010-03-08 Version 1.0.5 released
    11 
    12         Bugfix release.
    13 
    14         #250: Fix in pathSource() and pathTarget()
    15         #321: Use pathCopy(from,to) instead of copyPath(to,from)
    16         #330: Bug fix in map_extender.h
    17         #335: Fix clear() function in ExtendFindEnum (#335)
    18         #336: Fix the date field comment of graphToEps() output
    19 
    20 2009-05-05 Version 1.0.4 released
    21 
    22         Bugfix release.
    23 
    24         #274,#280: Install lemon/config.h and fix its bad include by core.h
    25         #275: Prefix macro names with LEMON_ in lemon/config.h
    26         ----: Small script for making the release tarballs added
    27         ----: Minor improvement in unify-sources.sh (a76f55d7d397)
    28 
    29 2009-03-27 LEMON joins to the COIN-OR initiative
    30 
    31         COIN-OR (Computational Infrastructure for Operations Research,
    32         http://www.coin-or.org) project is an initiative to spur the
    33         development of open-source software for the operations research
    34         community.
    35 
    36 2009-03-26 Version 1.0.3 released
    37 
    38         Bugfix release, mainly targeting better AIX/xlC and WIN32
    39         compatibility.
    40 
    41         ----: Minor clarification in the LICENSE file
    42         ----: Add missing unistd.h include to time_measure.h
    43         #204: Compilation bug fixed in graph_to_eps.h with VS2005
    44         #214,#215: windows.h is never be included by lemon headers
    45         #230: Build systems check the availability of 'long long' type
    46         #229: Default implementation of Tolerance<> is used for integer types
    47         #211,#212: Various fixes for compiling on AIX
    48         ----: Improvements in CMAKE config
    49               - docs is installed in share/doc/
    50               - detects newer versions of Ghostscript
    51         #239: Fix missing 'inline' specifier in time_measure.h
    52         
    53 2009-01-23 Version 1.0.2 released
    54 
    55         Bugfix release.
    56 
    57         #193: Bugfix in GraphReader::skipSection()
    58         #195: Bugfix in ConEdgeIt()
    59         #197: Bugfix in heap unionfind
    60               * This bug affects Edmond's general matching algorithms.
    61                 (Not available in this release.)
    62         #207: Fix 'make install' without 'make html' using CMAKE
    63         #208: Suppress or fix VS2008 compilation warnings
    64         ----: Update the LEMON icon
    65         ----: Enable the component-based installer
    66               (in installers made by CPACK)
    67         ----: Set the proper version for CMAKE in the tarballs
    68               (made by autotools).
    69 
    70 2008-12-06 Version 1.0.1 released
    71 
    72         Bugfix release.
    73 
    74         #170: Bugfix SmartDigraph::split()
    75         #171: Bugfix in SmartGraph::restoreSnapshot()
    76         #172: Extended test cases for graphs and digraphs
    77         #173: Bugfix in Random
    78               * operator()s always return a double now
    79               * the faulty real<Num>(Num) and real<Num>(Num,Num)
    80                 have been removed
    81         #187: Remove DijkstraWidestPathOperationTraits
    82         #61:  Bugfix in DfsVisit
    83 
    84 2008-10-13 Version 1.0 released
    85 
    86 	This is the first stable release of LEMON. Compared to the 0.x
    87 	release series, it features a considerably smaller but more
    88 	matured set of tools. The API has also completely revised and
    89 	changed in several places.
    90 
    91 	* The major name changes compared to the 0.x series (see the
    92           Migration Guide in the doc for more details)
    93           * Graph -> Digraph, UGraph -> Graph
    94           * Edge -> Arc, UEdge -> Edge
    95 	  * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
    96 	* Other improvements
    97 	  * Better documentation
    98 	  * Reviewed and cleaned up codebase
    99 	  * CMake based build system (along with the autotools based one)
   100 	* Contents of the library (ported from 0.x)
   101 	  * Algorithms
   102        	    * breadth-first search (bfs.h)
   103        	    * depth-first search (dfs.h)
   104        	    * Dijkstra's algorithm (dijkstra.h)
   105        	    * Kruskal's algorithm (kruskal.h)
   106     	  * Data structures
   107        	    * graph data structures (list_graph.h, smart_graph.h)
   108        	    * path data structures (path.h)
   109        	    * binary heap data structure (bin_heap.h)
   110        	    * union-find data structures (unionfind.h)
   111        	    * miscellaneous property maps (maps.h)
   112        	    * two dimensional vector and bounding box (dim2.h)
   113           * Concepts
   114        	    * graph structure concepts (concepts/digraph.h, concepts/graph.h,
   115               concepts/graph_components.h)
   116        	    * concepts for other structures (concepts/heap.h, concepts/maps.h,
   117 	      concepts/path.h)
   118     	  * Tools
   119        	    * Mersenne twister random number generator (random.h)
   120        	    * tools for measuring cpu and wall clock time (time_measure.h)
   121        	    * tools for counting steps and events (counter.h)
   122        	    * tool for parsing command line arguments (arg_parser.h)
   123        	    * tool for visualizing graphs (graph_to_eps.h)
   124        	    * tools for reading and writing data in LEMON Graph Format
   125               (lgf_reader.h, lgf_writer.h)
   126             * tools to handle the anomalies of calculations with
   127 	      floating point numbers (tolerance.h)
   128             * tools to manage RGB colors (color.h)
   129     	  * Infrastructure
   130        	    * extended assertion handling (assert.h)
   131        	    * exception classes and error handling (error.h)
   132       	    * concept checking (concept_check.h)
   133        	    * commonly used mathematical constants (math.h)