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