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