NEWS
author Alpar Juttner <alpar@cs.elte.hu>
Sun, 21 Feb 2010 18:55:01 +0100
branch1.1
changeset 908 c6f725eff737
parent 712 e652b6f9a29f
child 939 86a880ba752d
permissions -rw-r--r--
Merge bugfix #336 to branch 1.1
alpar@853
     1
2009-10-03 Version 1.1.1 released
alpar@853
     2
alpar@853
     3
        Bugfix release.
alpar@853
     4
alpar@853
     5
        #295: Suppress MSVC warnings using pragmas
alpar@853
     6
        ----: Various CMAKE related improvements
alpar@853
     7
              * Remove duplications from doc/CMakeLists.txt
alpar@853
     8
              * Rename documentation install folder from 'docs' to 'html'
alpar@853
     9
              * Add tools/CMakeLists.txt to the tarball
alpar@853
    10
              * Generate and install LEMONConfig.cmake
alpar@853
    11
              * Change the label of the html project in Visual Studio
alpar@853
    12
              * Fix the check for the 'long long' type
alpar@853
    13
              * Put the version string into config.h
alpar@853
    14
              * Minor CMake improvements
alpar@853
    15
              * Set the version to 'hg-tip' if everything fails
alpar@853
    16
        #311: Add missing 'explicit' keywords
alpar@853
    17
        #302: Fix the implementation and doc of CrossRefMap
alpar@853
    18
        #308: Remove duplicate list_graph.h entry from source list
alpar@853
    19
        #307: Bug fix in Preflow and Circulation
alpar@853
    20
alpar@712
    21
2009-05-13 Version 1.1 released
alpar@712
    22
alpar@712
    23
        This is the second stable release of the 1.x series. It
alpar@712
    24
        features a better coverage of the tools available in the 0.x
alpar@712
    25
        series, a thoroughly reworked LP/MIP interface plus various
alpar@712
    26
        improvements in the existing tools.
alpar@712
    27
alpar@712
    28
        * Much improved M$ Windows support
alpar@712
    29
          * Various improvements in the CMAKE build system
alpar@712
    30
          * Compilation warnings are fixed/suppressed
alpar@712
    31
        * Support IBM xlC compiler
alpar@712
    32
        * New algorithms
alpar@712
    33
          * Connectivity related algorithms (#61)
alpar@712
    34
          * Euler walks (#65)
alpar@712
    35
          * Preflow push-relabel max. flow algorithm (#176)
alpar@712
    36
          * Circulation algorithm (push-relabel based) (#175)
alpar@712
    37
          * Suurballe algorithm (#47)
alpar@712
    38
          * Gomory-Hu algorithm (#66)
alpar@712
    39
          * Hao-Orlin algorithm (#58)
alpar@712
    40
          * Edmond's maximum cardinality and weighted matching algorithms
alpar@712
    41
            in general graphs (#48,#265)
alpar@712
    42
          * Minimum cost arborescence/branching (#60)
alpar@712
    43
          * Network Simplex min. cost flow algorithm (#234)
alpar@712
    44
        * New data structures
alpar@712
    45
          * Full graph structure (#57)
alpar@712
    46
          * Grid graph structure (#57)
alpar@712
    47
          * Hypercube graph structure (#57)
alpar@712
    48
          * Graph adaptors (#67)
alpar@712
    49
          * ArcSet and EdgeSet classes (#67)
alpar@712
    50
          * Elevator class (#174)
alpar@712
    51
        * Other new tools
alpar@712
    52
          * LP/MIP interface (#44)
alpar@712
    53
            * Support for GLPK, CPLEX, Soplex, COIN-OR CLP and CBC
alpar@712
    54
          * Reader for the Nauty file format (#55)
alpar@712
    55
          * DIMACS readers (#167)
alpar@712
    56
          * Radix sort algorithms (#72)
alpar@712
    57
          * RangeIdMap and CrossRefMap (#160)
alpar@712
    58
        * New command line tools
alpar@712
    59
          * DIMACS to LGF converter (#182)
alpar@712
    60
          * lgf-gen - a graph generator (#45)
alpar@712
    61
          * DIMACS solver utility (#226)
alpar@712
    62
        * Other code improvements
alpar@712
    63
          * Lognormal distribution added to Random (#102)
alpar@712
    64
          * Better (i.e. O(1) time) item counting in SmartGraph (#3)
alpar@712
    65
          * The standard maps of graphs are guaranteed to be
alpar@712
    66
            reference maps (#190)
alpar@712
    67
        * Miscellaneous
alpar@712
    68
          * Various doc improvements
alpar@712
    69
          * Improved 0.x -> 1.x converter script
alpar@712
    70
alpar@712
    71
        * Several bugfixes (compared to release 1.0):
alpar@712
    72
          #170: Bugfix SmartDigraph::split()
alpar@712
    73
          #171: Bugfix in SmartGraph::restoreSnapshot()
alpar@712
    74
          #172: Extended test cases for graphs and digraphs
alpar@712
    75
          #173: Bugfix in Random
alpar@712
    76
                * operator()s always return a double now
alpar@712
    77
                * the faulty real<Num>(Num) and real<Num>(Num,Num)
alpar@712
    78
                  have been removed
alpar@712
    79
          #187: Remove DijkstraWidestPathOperationTraits
alpar@712
    80
          #61:  Bugfix in DfsVisit
alpar@712
    81
          #193: Bugfix in GraphReader::skipSection()
alpar@712
    82
          #195: Bugfix in ConEdgeIt()
alpar@712
    83
          #197: Bugfix in heap unionfind
alpar@712
    84
                * This bug affects Edmond's general matching algorithms
alpar@712
    85
          #207: Fix 'make install' without 'make html' using CMAKE
alpar@712
    86
          #208: Suppress or fix VS2008 compilation warnings
alpar@712
    87
          ----: Update the LEMON icon
alpar@712
    88
          ----: Enable the component-based installer
alpar@712
    89
                (in installers made by CPACK)
alpar@712
    90
          ----: Set the proper version for CMAKE in the tarballs
alpar@712
    91
                (made by autotools)
alpar@712
    92
          ----: Minor clarification in the LICENSE file
alpar@712
    93
          ----: Add missing unistd.h include to time_measure.h
alpar@712
    94
          #204: Compilation bug fixed in graph_to_eps.h with VS2005
alpar@712
    95
          #214,#215: windows.h should never be included by lemon headers
alpar@712
    96
          #230: Build systems check the availability of 'long long' type
alpar@712
    97
          #229: Default implementation of Tolerance<> is used for integer types
alpar@712
    98
          #211,#212: Various fixes for compiling on AIX
alpar@712
    99
          ----: Improvements in CMAKE config
alpar@712
   100
                - docs is installed in share/doc/
alpar@712
   101
                - detects newer versions of Ghostscript
alpar@712
   102
          #239: Fix missing 'inline' specifier in time_measure.h
alpar@712
   103
          #274,#280: Install lemon/config.h
alpar@712
   104
          #275: Prefix macro names with LEMON_ in lemon/config.h
alpar@712
   105
          ----: Small script for making the release tarballs added
alpar@712
   106
          ----: Minor improvement in unify-sources.sh (a76f55d7d397)
alpar@712
   107
alpar@534
   108
2009-03-27 LEMON joins to the COIN-OR initiative
alpar@534
   109
alpar@534
   110
        COIN-OR (Computational Infrastructure for Operations Research,
alpar@534
   111
        http://www.coin-or.org) project is an initiative to spur the
alpar@534
   112
        development of open-source software for the operations research
alpar@534
   113
        community.
alpar@534
   114
alpar@322
   115
2008-10-13 Version 1.0 released
alpar@262
   116
alpar@262
   117
	This is the first stable release of LEMON. Compared to the 0.x
alpar@262
   118
	release series, it features a considerably smaller but more
alpar@262
   119
	matured set of tools. The API has also completely revised and
alpar@262
   120
	changed in several places.
alpar@262
   121
alpar@322
   122
	* The major name changes compared to the 0.x series (see the
alpar@322
   123
          Migration Guide in the doc for more details)
alpar@262
   124
          * Graph -> Digraph, UGraph -> Graph
alpar@262
   125
          * Edge -> Arc, UEdge -> Edge
alpar@262
   126
	  * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
alpar@262
   127
	* Other improvements
alpar@262
   128
	  * Better documentation
alpar@262
   129
	  * Reviewed and cleaned up codebase
alpar@262
   130
	  * CMake based build system (along with the autotools based one)
alpar@262
   131
	* Contents of the library (ported from 0.x)
alpar@262
   132
	  * Algorithms
alpar@262
   133
       	    * breadth-first search (bfs.h)
alpar@262
   134
       	    * depth-first search (dfs.h)
alpar@262
   135
       	    * Dijkstra's algorithm (dijkstra.h)
alpar@262
   136
       	    * Kruskal's algorithm (kruskal.h)
alpar@262
   137
    	  * Data structures
alpar@262
   138
       	    * graph data structures (list_graph.h, smart_graph.h)
alpar@262
   139
       	    * path data structures (path.h)
alpar@262
   140
       	    * binary heap data structure (bin_heap.h)
alpar@262
   141
       	    * union-find data structures (unionfind.h)
alpar@262
   142
       	    * miscellaneous property maps (maps.h)
alpar@262
   143
       	    * two dimensional vector and bounding box (dim2.h)
alpar@262
   144
          * Concepts
alpar@262
   145
       	    * graph structure concepts (concepts/digraph.h, concepts/graph.h,
alpar@262
   146
              concepts/graph_components.h)
alpar@262
   147
       	    * concepts for other structures (concepts/heap.h, concepts/maps.h,
alpar@262
   148
	      concepts/path.h)
alpar@262
   149
    	  * Tools
alpar@262
   150
       	    * Mersenne twister random number generator (random.h)
alpar@262
   151
       	    * tools for measuring cpu and wall clock time (time_measure.h)
alpar@262
   152
       	    * tools for counting steps and events (counter.h)
alpar@262
   153
       	    * tool for parsing command line arguments (arg_parser.h)
alpar@262
   154
       	    * tool for visualizing graphs (graph_to_eps.h)
alpar@262
   155
       	    * tools for reading and writing data in LEMON Graph Format
alpar@262
   156
              (lgf_reader.h, lgf_writer.h)
alpar@262
   157
            * tools to handle the anomalies of calculations with
alpar@262
   158
	      floating point numbers (tolerance.h)
alpar@262
   159
            * tools to manage RGB colors (color.h)
alpar@262
   160
    	  * Infrastructure
alpar@262
   161
       	    * extended assertion handling (assert.h)
alpar@262
   162
       	    * exception classes and error handling (error.h)
alpar@262
   163
      	    * concept checking (concept_check.h)
alpar@262
   164
       	    * commonly used mathematical constants (math.h)