# HG changeset patch # User alpar # Date 1136381519 0 # Node ID 98698b69a9022a612fc2f525f36fc348b500c8ef # Parent 396831fa7012659d75a674755c623c976ff5d3ad Happy new year to LEMON diff -r 396831fa7012 -r 98698b69a902 LICENSE --- a/LICENSE Wed Jan 04 13:20:17 2006 +0000 +++ b/LICENSE Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ LEMON code without an explicit copyright is covered by the following copyright/license: -Copyright (C) 2003-2005 Egervary Jeno Kombinatorikus Optimalizalasi +Copyright (C) 2003-2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport (Egervary Combinatorial Optimization Research Group, EGRES). diff -r 396831fa7012 -r 98698b69a902 demo/coloring.cc --- a/demo/coloring.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/coloring.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/coloring.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted @@ -98,7 +98,7 @@ ColorSet colorSet; graphToEps(graph, "coloring.eps"). - title("Six Colored Plan Graph").copyright("(C) 2005 LEMON Project"). + title("Six Colored Plan Graph").copyright("(C) 2006 LEMON Project"). coords(coords).nodeColors(composeMap(colorSet, color)). nodeScale(5.0).scaleToA4().run(); diff -r 396831fa7012 -r 98698b69a902 demo/descriptor_map_demo.cc --- a/demo/descriptor_map_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/descriptor_map_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization * library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted @@ -110,7 +110,7 @@ graphToEps(graph,"descriptor_map_demo.eps").scaleToA4(). title("Generated graph"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). coords(coords). nodeScale(1.0). enableParallel().parEdgeDist(1). diff -r 396831fa7012 -r 98698b69a902 demo/dijkstra_demo.cc --- a/demo/dijkstra_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/dijkstra_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/dijkstra_demo.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/dim_to_dot.cc --- a/demo/dim_to_dot.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/dim_to_dot.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/dim_to_dot.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/dim_to_lgf.cc --- a/demo/dim_to_lgf.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/dim_to_lgf.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/dim_to_lgf.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/graph_orientation.cc --- a/demo/graph_orientation.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/graph_orientation.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/graph_orientation.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted @@ -108,7 +108,7 @@ graphToEps(g,"graph_orientation.eps").scaleToA4(). title("Sample .eps figure (fits to A4)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeScale(15). coords(coords). negateY(). diff -r 396831fa7012 -r 98698b69a902 demo/graph_to_eps_demo.cc --- a/demo/graph_to_eps_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/graph_to_eps_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/graph_to_eps.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted @@ -81,7 +81,7 @@ cout << "Create 'graph_to_eps_demo_out.eps'" << endl; graphToEps(g,"graph_to_eps_demo_out.eps").scale(10).coords(coords). title("Sample .eps figure"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeScale(2).nodeSizes(sizes). nodeShapes(shapes). nodeColors(composeMap(colorSet,colors)). @@ -94,7 +94,7 @@ cout << "Create 'graph_to_eps_demo_out_arr.eps'" << endl; graphToEps(g,"graph_to_eps_demo_out_arr.eps").scale(10). title("Sample .eps figure (with arrowheads)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeColors(composeMap(colorSet,colors)). coords(coords). nodeScale(2).nodeSizes(sizes). @@ -119,7 +119,7 @@ cout << "Create 'graph_to_eps_demo_out_par.eps'" << endl; graphToEps(g,"graph_to_eps_demo_out_par.eps").scale(10). title("Sample .eps figure (parallel edges)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeShapes(shapes). coords(coords). nodeScale(2).nodeSizes(sizes). @@ -133,7 +133,7 @@ cout << "Create 'graph_to_eps_demo_out_par_arr.eps'" << endl; graphToEps(g,"graph_to_eps_demo_out_par_arr.eps").scale(10). title("Sample .eps figure (parallel edges and arrowheads)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeScale(2).nodeSizes(sizes). coords(coords). nodeShapes(shapes). @@ -148,7 +148,7 @@ cout << "Create 'graph_to_eps_demo_out_a4.eps'" << endl; graphToEps(g,"graph_to_eps_demo_out_a4.eps").scaleToA4(). title("Sample .eps figure (fits to A4)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). nodeScale(2).nodeSizes(sizes). coords(coords). nodeShapes(shapes). @@ -174,7 +174,7 @@ cout << "Create 'graph_to_eps_demo_out_colors.eps'" << endl; graphToEps(h,"graph_to_eps_demo_out_colors.eps").scale(60). title("Sample .eps figure (ColorSet demo)"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). coords(hcoords). nodeScale(.45). distantColorNodeTexts(). diff -r 396831fa7012 -r 98698b69a902 demo/grid_graph_demo.cc --- a/demo/grid_graph_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/grid_graph_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -69,7 +69,7 @@ graphToEps(filtered, "grid_graph_demo.eps").scaleToA4(). title("Grid graph"). - copyright("(C) 2005 LEMON Project"). + copyright("(C) 2006 LEMON Project"). coords(scaleMap(indexMap(graph), 10)). enableParallel(). nodeScale(0.5). diff -r 396831fa7012 -r 98698b69a902 demo/hello_lemon.cc --- a/demo/hello_lemon.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/hello_lemon.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/hello_lemon.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/kruskal_demo.cc --- a/demo/kruskal_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/kruskal_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/kruskal_demo.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/lp_demo.cc --- a/demo/lp_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/lp_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/lp_demo.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/lp_maxflow_demo.cc --- a/demo/lp_maxflow_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/lp_maxflow_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/min_route.cc --- a/demo/min_route.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/min_route.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/min_route.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/reader_writer_demo.cc --- a/demo/reader_writer_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/reader_writer_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * demo/reader_writer_demo.cc - Part of LEMON, a generic C++ optimization * library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/sub_graph_adaptor_demo.cc --- a/demo/sub_graph_adaptor_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/sub_graph_adaptor_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * demo/sub_graph_adaptor_demo.cc - Part of LEMON, a generic C++ optimization * library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/tight_edge_filter_map.h --- a/demo/tight_edge_filter_map.h Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/tight_edge_filter_map.h Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * demo/tight_edge_filter_map.h - Part of LEMON, a generic C++ optimization * library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 demo/topology_demo.cc --- a/demo/topology_demo.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/demo/topology_demo.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * demo/min_route.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 doc/template.h --- a/doc/template.h Wed Jan 04 13:20:17 2006 +0000 +++ b/doc/template.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/template.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 gui/xml.h --- a/gui/xml.h Wed Jan 04 13:20:17 2006 +0000 +++ b/gui/xml.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * gui/xml.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/attic/debug.h --- a/lemon/attic/debug.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/attic/debug.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/debug.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/base.cc --- a/lemon/base.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/base.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/base.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bellman_ford.h --- a/lemon/bellman_ford.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bellman_ford.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bellman_ford.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bezier.h --- a/lemon/bezier.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bezier.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bezier.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bfs.h --- a/lemon/bfs.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bfs.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bfs.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bin_heap.h --- a/lemon/bin_heap.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bin_heap.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bin_heap.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/alteration_notifier.h --- a/lemon/bits/alteration_notifier.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/alteration_notifier.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/notifier.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/array_map.h --- a/lemon/bits/array_map.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/array_map.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bits/array_map.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/default_map.h --- a/lemon/bits/default_map.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/default_map.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/default_map.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/graph_extender.h --- a/lemon/bits/graph_extender.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/graph_extender.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_extender.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi * Kutatocsoport (Egervary Research Group on Combinatorial Optimization, * EGRES). * diff -r 396831fa7012 -r 98698b69a902 lemon/bits/item_reader.h --- a/lemon/bits/item_reader.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/item_reader.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bits/item_reader.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/item_writer.h --- a/lemon/bits/item_writer.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/item_writer.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/bits/item_reader.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/map_extender.h --- a/lemon/bits/map_extender.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/map_extender.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/map_extender.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/static_map.h --- a/lemon/bits/static_map.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/static_map.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/static_map.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/bits/vector_map.h --- a/lemon/bits/vector_map.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/bits/vector_map.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/vector_map.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/graph.h --- a/lemon/concept/graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/graph_component.h --- a/lemon/concept/graph_component.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/graph_component.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/graph_component.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/heap.h --- a/lemon/concept/heap.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/heap.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/heap.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/maps.h --- a/lemon/concept/maps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/maps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/maps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/matrix_maps.h --- a/lemon/concept/matrix_maps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/matrix_maps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/matrix_maps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/path.h --- a/lemon/concept/path.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/path.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/concept/path.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/concept/undir_graph.h --- a/lemon/concept/undir_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/concept/undir_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -3,7 +3,7 @@ * lemon/concept/undir_graph_component.h - Part of LEMON, a generic * C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi * Kutatocsoport (Egervary Research Group on Combinatorial Optimization, * EGRES). * diff -r 396831fa7012 -r 98698b69a902 lemon/counter.h --- a/lemon/counter.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/counter.h Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * lemon/counter.h - * Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/dfs.h --- a/lemon/dfs.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/dfs.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/dfs.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/dijkstra.h --- a/lemon/dijkstra.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/dijkstra.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/dijkstra.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/dimacs.h --- a/lemon/dimacs.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/dimacs.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/dimacs.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/edge_set.h --- a/lemon/edge_set.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/edge_set.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/edge_set.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/error.h --- a/lemon/error.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/error.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/error.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi * Kutatocsoport (Egervary Research Group on Combinatorial Optimization, * EGRES). * diff -r 396831fa7012 -r 98698b69a902 lemon/euler.h --- a/lemon/euler.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/euler.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/euler.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/fib_heap.h --- a/lemon/fib_heap.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/fib_heap.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/fib_heap.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/floyd_warshall.h --- a/lemon/floyd_warshall.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/floyd_warshall.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/floyd_warshall.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/full_graph.h --- a/lemon/full_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/full_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/full_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/graph_adaptor.h --- a/lemon/graph_adaptor.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/graph_adaptor.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_adaptor.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/graph_reader.h --- a/lemon/graph_reader.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/graph_reader.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_reader.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/graph_to_eps.h --- a/lemon/graph_to_eps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/graph_to_eps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_to_eps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/graph_utils.h --- a/lemon/graph_utils.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/graph_utils.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_utils.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/graph_writer.h --- a/lemon/graph_writer.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/graph_writer.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/graph_writer.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/grid_graph.h --- a/lemon/grid_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/grid_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/grid_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/hypercube_graph.h --- a/lemon/hypercube_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/hypercube_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/hypercube_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/invalid.h --- a/lemon/invalid.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/invalid.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/invalid.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/iterable_maps.h --- a/lemon/iterable_maps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/iterable_maps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/iterable_maps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/johnson.h --- a/lemon/johnson.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/johnson.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/johnson.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/kruskal.h --- a/lemon/kruskal.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/kruskal.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/kruskal.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lemon_reader.h --- a/lemon/lemon_reader.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lemon_reader.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lemon_reader.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lemon_writer.h --- a/lemon/lemon_writer.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lemon_writer.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lemon_writer.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/linear_heap.h --- a/lemon/linear_heap.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/linear_heap.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/linear_heap.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/list_graph.h --- a/lemon/list_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/list_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/list_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp.h --- a/lemon/lp.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_base.cc --- a/lemon/lp_base.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_base.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_base.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_base.h --- a/lemon/lp_base.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_base.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_base.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_cplex.cc --- a/lemon/lp_cplex.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_cplex.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_cplex.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_cplex.h --- a/lemon/lp_cplex.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_cplex.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_cplex.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_glpk.cc --- a/lemon/lp_glpk.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_glpk.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_glpk.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_glpk.h --- a/lemon/lp_glpk.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_glpk.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_glpk.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_skeleton.cc --- a/lemon/lp_skeleton.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_skeleton.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_skeleton.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/lp_skeleton.h --- a/lemon/lp_skeleton.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/lp_skeleton.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/lp_skeleton.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/map_iterator.h --- a/lemon/map_iterator.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/map_iterator.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/map_iterator.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/maps.h --- a/lemon/maps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/maps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/maps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/matrix_maps.h --- a/lemon/matrix_maps.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/matrix_maps.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/matrix_maps.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/max_matching.h --- a/lemon/max_matching.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/max_matching.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/max_matching.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/min_cost_flow.h --- a/lemon/min_cost_flow.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/min_cost_flow.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/min_cost_flow.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/path.h --- a/lemon/path.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/path.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/path.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/preflow.h --- a/lemon/preflow.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/preflow.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/preflow.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/radix_heap.h --- a/lemon/radix_heap.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/radix_heap.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/radix_heap.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/radix_sort.h --- a/lemon/radix_sort.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/radix_sort.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/radix_sort.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/smart_graph.h --- a/lemon/smart_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/smart_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/smart_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/sub_graph.h --- a/lemon/sub_graph.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/sub_graph.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/sub_graph.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/suurballe.h --- a/lemon/suurballe.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/suurballe.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/suurballe.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/time_measure.h --- a/lemon/time_measure.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/time_measure.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/time_measure.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/tolerance.h --- a/lemon/tolerance.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/tolerance.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/tolerance.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/topology.h --- a/lemon/topology.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/topology.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/topology.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/traits.h --- a/lemon/traits.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/traits.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/traits.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/unionfind.h --- a/lemon/unionfind.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/unionfind.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/unionfind.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 lemon/utility.h --- a/lemon/utility.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/utility.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/utility.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi * Kutatocsoport (Egervary Research Group on Combinatorial Optimization, * EGRES). * diff -r 396831fa7012 -r 98698b69a902 lemon/xy.h --- a/lemon/xy.h Wed Jan 04 13:20:17 2006 +0000 +++ b/lemon/xy.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * lemon/xy.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/bfs_test.cc --- a/test/bfs_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/bfs_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/bfs_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/counter_test.cc --- a/test/counter_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/counter_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/counter_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/dfs_test.cc --- a/test/dfs_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/dfs_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/dfs_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/dijkstra_test.cc --- a/test/dijkstra_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/dijkstra_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/dijkstra_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/error_test.cc --- a/test/error_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/error_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/error_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/graph_adaptor_test.cc --- a/test/graph_adaptor_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/graph_adaptor_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/graph_adaptor_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/graph_factory_test.cc --- a/test/graph_factory_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/graph_factory_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/graph_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/graph_test.h --- a/test/graph_test.h Wed Jan 04 13:20:17 2006 +0000 +++ b/test/graph_test.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/graph_test.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/graph_utils_test.h --- a/test/graph_utils_test.h Wed Jan 04 13:20:17 2006 +0000 +++ b/test/graph_utils_test.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/graph_utils_test.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/kruskal_test.cc --- a/test/kruskal_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/kruskal_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/kruskal_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/map_test.h --- a/test/map_test.h Wed Jan 04 13:20:17 2006 +0000 +++ b/test/map_test.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/map_test.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/max_matching_test.cc --- a/test/max_matching_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/max_matching_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -2,7 +2,7 @@ * test/max_matching_test.cc - * Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/min_cost_flow_test.cc --- a/test/min_cost_flow_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/min_cost_flow_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/min_cost_flow_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/path_test.cc --- a/test/path_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/path_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/path_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/preflow_test.cc --- a/test/preflow_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/preflow_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/preflow_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/suurballe_test.cc --- a/test/suurballe_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/suurballe_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/suurballe_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/test_tools.h --- a/test/test_tools.h Wed Jan 04 13:20:17 2006 +0000 +++ b/test/test_tools.h Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/test_tools.h - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/test_tools_fail.cc --- a/test/test_tools_fail.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/test_tools_fail.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/test_tools_fail.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/test_tools_pass.cc --- a/test/test_tools_pass.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/test_tools_pass.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/test_tools_pass.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/time_measure_test.cc --- a/test/time_measure_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/time_measure_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/time_measure_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/unionfind_test.cc --- a/test/unionfind_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/unionfind_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/unionfind_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted diff -r 396831fa7012 -r 98698b69a902 test/xy_test.cc --- a/test/xy_test.cc Wed Jan 04 13:20:17 2006 +0000 +++ b/test/xy_test.cc Wed Jan 04 13:31:59 2006 +0000 @@ -1,7 +1,7 @@ /* -*- C++ -*- * test/xy_test.cc - Part of LEMON, a generic C++ optimization library * - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted