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