gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Merge from trunk (update NEWS + add AUTHORS file)
0 2 1
merge r1.0 1.0
0 files changed with 30 insertions and 2 deletions:
↑ Collapse diff ↑
Ignore white space 805306368 line context
1
The authors of the 1.x series are
2

	
3
 * Balazs Dezso <deba@inf.elte.hu>
4
 * Alpar Juttner <alpar@cs.elte.hu>
5
 * Peter Kovacs <kpeter@inf.elte.hu>
6
 * Akos Ladanyi <ladanyi@tmit.bme.hu>
7

	
8
For more details on the actual contribution, please visit the history
9
of the main LEMON source repository: http://lemon.cs.elte.hu/hg/lemon
10

	
11
Moreover, this version is heavily based on the 0.x series of
12
LEMON. Here is the list of people who contributed to those versions.
13

	
14
 * Mihaly Barasz <klao@cs.elte.hu>
15
 * Johanna Becker <beckerjc@cs.elte.hu>
16
 * Attila Bernath <athos@cs.elte.hu>
17
 * Balazs Dezso <deba@inf.elte.hu>
18
 * Peter Hegyi <hegyi@tmit.bme.hu>
19
 * Alpar Juttner <alpar@cs.elte.hu>
20
 * Peter Kovacs <kpeter@inf.elte.hu>
21
 * Akos Ladanyi <ladanyi@tmit.bme.hu>
22
 * Marton Makai <marci@cs.elte.hu>
23
 * Jacint Szabo <jacint@cs.elte.hu>
24

	
25
Again, please visit the history of the old LEMON repository for more
26
details: http://lemon.cs.elte.hu/svn/lemon/trunk
Ignore white space 805306368 line context
1 1
ACLOCAL_AMFLAGS = -I m4
2 2

	
3 3
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
4 4
LDADD = $(top_builddir)/lemon/libemon.la
5 5

	
6 6
EXTRA_DIST = \
7
	AUTHORS \
7 8
	LICENSE \
8 9
	m4/lx_check_cplex.m4 \
9 10
	m4/lx_check_glpk.m4 \
10 11
	m4/lx_check_soplex.m4 \
11 12
	CMakeLists.txt \
12 13
	cmake
13 14

	
14 15
pkgconfigdir = $(libdir)/pkgconfig
15 16
lemondir = $(pkgincludedir)
16 17
bitsdir = $(lemondir)/bits
17 18
conceptdir = $(lemondir)/concepts
18 19
pkgconfig_DATA =
19 20
lib_LTLIBRARIES =
20 21
lemon_HEADERS =
21 22
bits_HEADERS =
22 23
concept_HEADERS =
23 24
noinst_HEADERS =
24 25
noinst_PROGRAMS =
25 26
bin_PROGRAMS =
26 27
check_PROGRAMS =
27 28
dist_bin_SCRIPTS =
28 29
TESTS =
29 30
XFAIL_TESTS =
30 31

	
31 32
include lemon/Makefile.am
32 33
include test/Makefile.am
33 34
include doc/Makefile.am
34 35
include demo/Makefile.am
35 36
include tools/Makefile.am
36 37

	
37 38
MRPROPERFILES = \
38 39
	aclocal.m4 \
39 40
	config.h.in \
40 41
	config.h.in~ \
41 42
	configure \
42 43
	Makefile.in \
43 44
	build-aux/config.guess \
44 45
	build-aux/config.sub \
45 46
	build-aux/depcomp \
46 47
	build-aux/install-sh \
47 48
	build-aux/ltmain.sh \
48 49
	build-aux/missing \
49 50
	doc/doxygen.log
50 51

	
51 52
mrproper:
52 53
	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
53 54
	-rm -f $(MRPROPERFILES)
54 55

	
55 56
dist-bz2: dist
56 57
	zcat $(PACKAGE)-$(VERSION).tar.gz | \
57 58
	bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
58 59

	
59 60
distcheck-bz2: distcheck
60 61
	zcat $(PACKAGE)-$(VERSION).tar.gz | \
61 62
	bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
62 63

	
63 64
.PHONY: mrproper dist-bz2 distcheck-bz2
Ignore white space 805306368 line context
1
20XX-XX-XX Version 1.0 released
1
2008-10-13 Version 1.0 released
2 2

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

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