gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
LEMON is a COIN-OR project now
0 1 0
default
1 file changed with 7 insertions and 0 deletions:
7
↑ Collapse diff ↑
Ignore white space 192 line context
1
2009-03-27 LEMON joins to the COIN-OR initiative
2

	
3
        COIN-OR (Computational Infrastructure for Operations Research,
4
        http://www.coin-or.org) project is an initiative to spur the
5
        development of open-source software for the operations research
6
        community.
7

	
1 8
2008-10-13 Version 1.0 released
2 9

	
3 10
	This is the first stable release of LEMON. Compared to the 0.x
4 11
	release series, it features a considerably smaller but more
5 12
	matured set of tools. The API has also completely revised and
6 13
	changed in several places.
7 14

	
8 15
	* The major name changes compared to the 0.x series (see the
9 16
          Migration Guide in the doc for more details)
10 17
          * Graph -> Digraph, UGraph -> Graph
11 18
          * Edge -> Arc, UEdge -> Edge
12 19
	  * source(UEdge)/target(UEdge) -> u(Edge)/v(Edge)
13 20
	* Other improvements
14 21
	  * Better documentation
15 22
	  * Reviewed and cleaned up codebase
16 23
	  * CMake based build system (along with the autotools based one)
17 24
	* Contents of the library (ported from 0.x)
18 25
	  * Algorithms
19 26
       	    * breadth-first search (bfs.h)
20 27
       	    * depth-first search (dfs.h)
21 28
       	    * Dijkstra's algorithm (dijkstra.h)
22 29
       	    * Kruskal's algorithm (kruskal.h)
23 30
    	  * Data structures
24 31
       	    * graph data structures (list_graph.h, smart_graph.h)
25 32
       	    * path data structures (path.h)
26 33
       	    * binary heap data structure (bin_heap.h)
27 34
       	    * union-find data structures (unionfind.h)
28 35
       	    * miscellaneous property maps (maps.h)
29 36
       	    * two dimensional vector and bounding box (dim2.h)
30 37
          * Concepts
31 38
       	    * graph structure concepts (concepts/digraph.h, concepts/graph.h,
32 39
              concepts/graph_components.h)
33 40
       	    * concepts for other structures (concepts/heap.h, concepts/maps.h,
34 41
	      concepts/path.h)
35 42
    	  * Tools
36 43
       	    * Mersenne twister random number generator (random.h)
37 44
       	    * tools for measuring cpu and wall clock time (time_measure.h)
38 45
       	    * tools for counting steps and events (counter.h)
39 46
       	    * tool for parsing command line arguments (arg_parser.h)
40 47
       	    * tool for visualizing graphs (graph_to_eps.h)
41 48
       	    * tools for reading and writing data in LEMON Graph Format
42 49
              (lgf_reader.h, lgf_writer.h)
43 50
            * tools to handle the anomalies of calculations with
44 51
	      floating point numbers (tolerance.h)
45 52
            * tools to manage RGB colors (color.h)
46 53
    	  * Infrastructure
47 54
       	    * extended assertion handling (assert.h)
48 55
       	    * exception classes and error handling (error.h)
49 56
      	    * concept checking (concept_check.h)
50 57
       	    * commonly used mathematical constants (math.h)
0 comments (0 inline)