Unified copyright notices
authoralpar
Fri, 03 Feb 2006 16:40:16 +0000
changeset 1956a055123339d5
parent 1955 daca31868d70
child 1957 3efb110919fa
Unified copyright notices
benchmark/bench_tools.h
benchmark/bfs-bench.cc
benchmark/graph-bench.cc
benchmark/hcube.cc
benchmark/radix_sort-bench.cc
demo/coloring.cc
demo/descriptor_map_demo.cc
demo/dijkstra_demo.cc
demo/dim_to_dot.cc
demo/dim_to_lgf.cc
demo/graph_orientation.cc
demo/graph_to_eps_demo.cc
demo/grid_graph_demo.cc
demo/hello_lemon.cc
demo/kruskal_demo.cc
demo/lp_demo.cc
demo/lp_maxflow_demo.cc
demo/min_route.cc
demo/reader_writer_demo.cc
demo/simann_maxcut_demo.cc
demo/sub_graph_adaptor_demo.cc
demo/tight_edge_filter_map.h
demo/topology_demo.cc
lemon/attic/debug.h
lemon/base.cc
lemon/bellman_ford.h
lemon/bezier.h
lemon/bfs.h
lemon/bin_heap.h
lemon/bits/alteration_notifier.h
lemon/bits/array_map.h
lemon/bits/clearable_graph_extender.h
lemon/bits/default_map.h
lemon/bits/erasable_graph_extender.h
lemon/bits/extendable_graph_extender.h
lemon/bits/graph_extender.h
lemon/bits/item_reader.h
lemon/bits/item_writer.h
lemon/bits/iterable_graph_extender.h
lemon/bits/map_extender.h
lemon/bits/static_map.h
lemon/bits/vector_map.h
lemon/concept/bpugraph.h
lemon/concept/graph.h
lemon/concept/graph_component.h
lemon/concept/heap.h
lemon/concept/maps.h
lemon/concept/matrix_maps.h
lemon/concept/path.h
lemon/concept/ugraph.h
lemon/concept_check.h
lemon/counter.h
lemon/dag_shortest_path.h
lemon/dfs.h
lemon/dijkstra.h
lemon/dimacs.h
lemon/edge_set.h
lemon/error.h
lemon/euler.h
lemon/fib_heap.h
lemon/floyd_warshall.h
lemon/fredman_tarjan.h
lemon/full_graph.h
lemon/graph_adaptor.h
lemon/graph_reader.h
lemon/graph_to_eps.h
lemon/graph_utils.h
lemon/graph_writer.h
lemon/grid_graph.h
lemon/hypercube_graph.h
lemon/invalid.h
lemon/iterable_maps.h
lemon/johnson.h
lemon/kruskal.h
lemon/lemon_reader.h
lemon/lemon_writer.h
lemon/linear_heap.h
lemon/list_graph.h
lemon/lp.h
lemon/lp_base.cc
lemon/lp_base.h
lemon/lp_cplex.cc
lemon/lp_cplex.h
lemon/lp_glpk.cc
lemon/lp_glpk.h
lemon/lp_skeleton.cc
lemon/lp_skeleton.h
lemon/map_iterator.h
lemon/maps.h
lemon/matrix_maps.h
lemon/max_matching.h
lemon/min_cost_flow.h
lemon/path.h
lemon/preflow.h
lemon/prim.h
lemon/radix_heap.h
lemon/radix_sort.h
lemon/simann.h
lemon/smart_graph.h
lemon/sub_graph.h
lemon/suurballe.h
lemon/time_measure.h
lemon/tolerance.h
lemon/topology.h
lemon/traits.h
lemon/unionfind.h
lemon/utility.h
lemon/xy.h
test/all_pairs_shortest_path_test.cc
test/bfs_test.cc
test/counter_test.cc
test/dfs_test.cc
test/dijkstra_test.cc
test/error_test.cc
test/graph_adaptor_test.cc
test/graph_factory_test.cc
test/graph_test.cc
test/graph_test.h
test/graph_utils_test.cc
test/graph_utils_test.h
test/heap_test.cc
test/heap_test.h
test/kruskal_test.cc
test/lp_test.cc
test/map_test.h
test/maps_test.cc
test/matrix_maps_test.cc
test/max_matching_test.cc
test/min_cost_flow_test.cc
test/path_test.cc
test/preflow_test.cc
test/radix_sort_test.cc
test/simann_test.cc
test/suurballe_test.cc
test/test_tools.h
test/test_tools_fail.cc
test/test_tools_pass.cc
test/time_measure_test.cc
test/ugraph_test.cc
test/unionfind_test.cc
test/xy_test.cc
     1.1 --- a/benchmark/bench_tools.h	Fri Feb 03 16:11:08 2006 +0000
     1.2 +++ b/benchmark/bench_tools.h	Fri Feb 03 16:40:16 2006 +0000
     1.3 @@ -1,4 +1,21 @@
     1.4 -// -*- mode:C++ -*-
     1.5 +/* -*- C++ -*-
     1.6 + *
     1.7 + * This file is a part of LEMON, a generic C++ optimization library
     1.8 + *
     1.9 + * Copyright (C) 2003-2006
    1.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.12 + *
    1.13 + * Permission to use, modify and distribute this software is granted
    1.14 + * provided that this copyright notice appears in all copies. For
    1.15 + * precise terms see the accompanying LICENSE file.
    1.16 + *
    1.17 + * This software is provided "AS IS" with no warranty of any kind,
    1.18 + * express or implied, and with no claim as to its suitability for any
    1.19 + * purpose.
    1.20 + *
    1.21 + */
    1.22 +
    1.23  #ifndef LEMON_BENCH_TEST_H
    1.24  #define LEMON_BENCH_TEST_H
    1.25  
     2.1 --- a/benchmark/bfs-bench.cc	Fri Feb 03 16:11:08 2006 +0000
     2.2 +++ b/benchmark/bfs-bench.cc	Fri Feb 03 16:40:16 2006 +0000
     2.3 @@ -1,4 +1,20 @@
     2.4 -// -*- mode:C++ -*-
     2.5 +/* -*- C++ -*-
     2.6 + *
     2.7 + * This file is a part of LEMON, a generic C++ optimization library
     2.8 + *
     2.9 + * Copyright (C) 2003-2006
    2.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    2.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    2.12 + *
    2.13 + * Permission to use, modify and distribute this software is granted
    2.14 + * provided that this copyright notice appears in all copies. For
    2.15 + * precise terms see the accompanying LICENSE file.
    2.16 + *
    2.17 + * This software is provided "AS IS" with no warranty of any kind,
    2.18 + * express or implied, and with no claim as to its suitability for any
    2.19 + * purpose.
    2.20 + *
    2.21 + */
    2.22  
    2.23  #include<queue>
    2.24  #include<cmath>
     3.1 --- a/benchmark/graph-bench.cc	Fri Feb 03 16:11:08 2006 +0000
     3.2 +++ b/benchmark/graph-bench.cc	Fri Feb 03 16:40:16 2006 +0000
     3.3 @@ -1,3 +1,21 @@
     3.4 +/* -*- C++ -*-
     3.5 + *
     3.6 + * This file is a part of LEMON, a generic C++ optimization library
     3.7 + *
     3.8 + * Copyright (C) 2003-2006
     3.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    3.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    3.11 + *
    3.12 + * Permission to use, modify and distribute this software is granted
    3.13 + * provided that this copyright notice appears in all copies. For
    3.14 + * precise terms see the accompanying LICENSE file.
    3.15 + *
    3.16 + * This software is provided "AS IS" with no warranty of any kind,
    3.17 + * express or implied, and with no claim as to its suitability for any
    3.18 + * purpose.
    3.19 + *
    3.20 + */
    3.21 +
    3.22  #include<lemon/list_graph.h>
    3.23  
    3.24  #include"bench_tools.h"
     4.1 --- a/benchmark/hcube.cc	Fri Feb 03 16:11:08 2006 +0000
     4.2 +++ b/benchmark/hcube.cc	Fri Feb 03 16:40:16 2006 +0000
     4.3 @@ -1,4 +1,20 @@
     4.4 -// -*- mode:C++ -*-
     4.5 +/* -*- C++ -*-
     4.6 + *
     4.7 + * This file is a part of LEMON, a generic C++ optimization library
     4.8 + *
     4.9 + * Copyright (C) 2003-2006
    4.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    4.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    4.12 + *
    4.13 + * Permission to use, modify and distribute this software is granted
    4.14 + * provided that this copyright notice appears in all copies. For
    4.15 + * precise terms see the accompanying LICENSE file.
    4.16 + *
    4.17 + * This software is provided "AS IS" with no warranty of any kind,
    4.18 + * express or implied, and with no claim as to its suitability for any
    4.19 + * purpose.
    4.20 + *
    4.21 + */
    4.22  
    4.23  #include<cmath>
    4.24  #include<lemon/list_graph.h>
     5.1 --- a/benchmark/radix_sort-bench.cc	Fri Feb 03 16:11:08 2006 +0000
     5.2 +++ b/benchmark/radix_sort-bench.cc	Fri Feb 03 16:40:16 2006 +0000
     5.3 @@ -1,3 +1,21 @@
     5.4 +/* -*- C++ -*-
     5.5 + *
     5.6 + * This file is a part of LEMON, a generic C++ optimization library
     5.7 + *
     5.8 + * Copyright (C) 2003-2006
     5.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    5.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    5.11 + *
    5.12 + * Permission to use, modify and distribute this software is granted
    5.13 + * provided that this copyright notice appears in all copies. For
    5.14 + * precise terms see the accompanying LICENSE file.
    5.15 + *
    5.16 + * This software is provided "AS IS" with no warranty of any kind,
    5.17 + * express or implied, and with no claim as to its suitability for any
    5.18 + * purpose.
    5.19 + *
    5.20 + */
    5.21 +
    5.22  #define NDEBUG
    5.23  
    5.24  #include <lemon/time_measure.h>
     6.1 --- a/demo/coloring.cc	Fri Feb 03 16:11:08 2006 +0000
     6.2 +++ b/demo/coloring.cc	Fri Feb 03 16:40:16 2006 +0000
     6.3 @@ -1,7 +1,9 @@
     6.4  /* -*- C++ -*-
     6.5 - * demo/coloring.cc - Part of LEMON, a generic C++ optimization library
     6.6   *
     6.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     6.8 + * This file is a part of LEMON, a generic C++ optimization library
     6.9 + *
    6.10 + * Copyright (C) 2003-2006
    6.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    6.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    6.13   *
    6.14   * Permission to use, modify and distribute this software is granted
     7.1 --- a/demo/descriptor_map_demo.cc	Fri Feb 03 16:11:08 2006 +0000
     7.2 +++ b/demo/descriptor_map_demo.cc	Fri Feb 03 16:40:16 2006 +0000
     7.3 @@ -1,8 +1,9 @@
     7.4  /* -*- C++ -*-
     7.5 - * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization
     7.6 - * library
     7.7   *
     7.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7.9 + * This file is a part of LEMON, a generic C++ optimization library
    7.10 + *
    7.11 + * Copyright (C) 2003-2006
    7.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    7.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    7.14   *
    7.15   * Permission to use, modify and distribute this software is granted
     8.1 --- a/demo/dijkstra_demo.cc	Fri Feb 03 16:11:08 2006 +0000
     8.2 +++ b/demo/dijkstra_demo.cc	Fri Feb 03 16:40:16 2006 +0000
     8.3 @@ -1,7 +1,9 @@
     8.4  /* -*- C++ -*-
     8.5 - * demo/dijkstra_demo.cc - Part of LEMON, a generic C++ optimization library
     8.6   *
     8.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     8.8 + * This file is a part of LEMON, a generic C++ optimization library
     8.9 + *
    8.10 + * Copyright (C) 2003-2006
    8.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    8.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    8.13   *
    8.14   * Permission to use, modify and distribute this software is granted
     9.1 --- a/demo/dim_to_dot.cc	Fri Feb 03 16:11:08 2006 +0000
     9.2 +++ b/demo/dim_to_dot.cc	Fri Feb 03 16:40:16 2006 +0000
     9.3 @@ -1,7 +1,9 @@
     9.4  /* -*- C++ -*-
     9.5 - * demo/dim_to_dot.cc - Part of LEMON, a generic C++ optimization library
     9.6   *
     9.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     9.8 + * This file is a part of LEMON, a generic C++ optimization library
     9.9 + *
    9.10 + * Copyright (C) 2003-2006
    9.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    9.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    9.13   *
    9.14   * Permission to use, modify and distribute this software is granted
    10.1 --- a/demo/dim_to_lgf.cc	Fri Feb 03 16:11:08 2006 +0000
    10.2 +++ b/demo/dim_to_lgf.cc	Fri Feb 03 16:40:16 2006 +0000
    10.3 @@ -1,7 +1,9 @@
    10.4  /* -*- C++ -*-
    10.5 - * demo/dim_to_lgf.cc - Part of LEMON, a generic C++ optimization library
    10.6   *
    10.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    10.8 + * This file is a part of LEMON, a generic C++ optimization library
    10.9 + *
   10.10 + * Copyright (C) 2003-2006
   10.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   10.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   10.13   *
   10.14   * Permission to use, modify and distribute this software is granted
    11.1 --- a/demo/graph_orientation.cc	Fri Feb 03 16:11:08 2006 +0000
    11.2 +++ b/demo/graph_orientation.cc	Fri Feb 03 16:40:16 2006 +0000
    11.3 @@ -1,7 +1,9 @@
    11.4  /* -*- C++ -*-
    11.5 - * demo/graph_orientation.cc - Part of LEMON, a generic C++ optimization library
    11.6   *
    11.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    11.8 + * This file is a part of LEMON, a generic C++ optimization library
    11.9 + *
   11.10 + * Copyright (C) 2003-2006
   11.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   11.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   11.13   *
   11.14   * Permission to use, modify and distribute this software is granted
   11.15 @@ -14,7 +16,6 @@
   11.16   *
   11.17   */
   11.18  
   11.19 -
   11.20  #include <lemon/list_graph.h>
   11.21  #include <lemon/graph_reader.h>
   11.22  #include <lemon/iterable_maps.h>
    12.1 --- a/demo/graph_to_eps_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    12.2 +++ b/demo/graph_to_eps_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    12.3 @@ -1,7 +1,9 @@
    12.4  /* -*- C++ -*-
    12.5 - * demo/graph_to_eps.cc - Part of LEMON, a generic C++ optimization library
    12.6   *
    12.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    12.8 + * This file is a part of LEMON, a generic C++ optimization library
    12.9 + *
   12.10 + * Copyright (C) 2003-2006
   12.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   12.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   12.13   *
   12.14   * Permission to use, modify and distribute this software is granted
    13.1 --- a/demo/grid_graph_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    13.2 +++ b/demo/grid_graph_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    13.3 @@ -1,3 +1,21 @@
    13.4 +/* -*- C++ -*-
    13.5 + *
    13.6 + * This file is a part of LEMON, a generic C++ optimization library
    13.7 + *
    13.8 + * Copyright (C) 2003-2006
    13.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   13.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   13.11 + *
   13.12 + * Permission to use, modify and distribute this software is granted
   13.13 + * provided that this copyright notice appears in all copies. For
   13.14 + * precise terms see the accompanying LICENSE file.
   13.15 + *
   13.16 + * This software is provided "AS IS" with no warranty of any kind,
   13.17 + * express or implied, and with no claim as to its suitability for any
   13.18 + * purpose.
   13.19 + *
   13.20 + */
   13.21 +
   13.22  #include <lemon/grid_graph.h>
   13.23  #include <lemon/graph_adaptor.h>
   13.24  #include <lemon/graph_to_eps.h>
    14.1 --- a/demo/hello_lemon.cc	Fri Feb 03 16:11:08 2006 +0000
    14.2 +++ b/demo/hello_lemon.cc	Fri Feb 03 16:40:16 2006 +0000
    14.3 @@ -1,7 +1,9 @@
    14.4  /* -*- C++ -*-
    14.5 - * demo/hello_lemon.cc - Part of LEMON, a generic C++ optimization library
    14.6   *
    14.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    14.8 + * This file is a part of LEMON, a generic C++ optimization library
    14.9 + *
   14.10 + * Copyright (C) 2003-2006
   14.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   14.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   14.13   *
   14.14   * Permission to use, modify and distribute this software is granted
    15.1 --- a/demo/kruskal_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    15.2 +++ b/demo/kruskal_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    15.3 @@ -1,7 +1,9 @@
    15.4  /* -*- C++ -*-
    15.5 - * demo/kruskal_demo.cc - Part of LEMON, a generic C++ optimization library
    15.6   *
    15.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    15.8 + * This file is a part of LEMON, a generic C++ optimization library
    15.9 + *
   15.10 + * Copyright (C) 2003-2006
   15.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   15.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   15.13   *
   15.14   * Permission to use, modify and distribute this software is granted
    16.1 --- a/demo/lp_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    16.2 +++ b/demo/lp_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    16.3 @@ -1,7 +1,9 @@
    16.4  /* -*- C++ -*-
    16.5 - * demo/lp_demo.cc - Part of LEMON, a generic C++ optimization library
    16.6   *
    16.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    16.8 + * This file is a part of LEMON, a generic C++ optimization library
    16.9 + *
   16.10 + * Copyright (C) 2003-2006
   16.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   16.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   16.13   *
   16.14   * Permission to use, modify and distribute this software is granted
    17.1 --- a/demo/lp_maxflow_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    17.2 +++ b/demo/lp_maxflow_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    17.3 @@ -1,7 +1,9 @@
    17.4  /* -*- C++ -*-
    17.5 - * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
    17.6   *
    17.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    17.8 + * This file is a part of LEMON, a generic C++ optimization library
    17.9 + *
   17.10 + * Copyright (C) 2003-2006
   17.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   17.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   17.13   *
   17.14   * Permission to use, modify and distribute this software is granted
    18.1 --- a/demo/min_route.cc	Fri Feb 03 16:11:08 2006 +0000
    18.2 +++ b/demo/min_route.cc	Fri Feb 03 16:40:16 2006 +0000
    18.3 @@ -1,7 +1,9 @@
    18.4  /* -*- C++ -*-
    18.5 - * demo/min_route.cc - Part of LEMON, a generic C++ optimization library
    18.6   *
    18.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    18.8 + * This file is a part of LEMON, a generic C++ optimization library
    18.9 + *
   18.10 + * Copyright (C) 2003-2006
   18.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   18.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   18.13   *
   18.14   * Permission to use, modify and distribute this software is granted
    19.1 --- a/demo/reader_writer_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    19.2 +++ b/demo/reader_writer_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    19.3 @@ -1,8 +1,9 @@
    19.4  /* -*- C++ -*-
    19.5 - * demo/reader_writer_demo.cc - Part of LEMON, a generic C++ optimization
    19.6 - * library
    19.7   *
    19.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    19.9 + * This file is a part of LEMON, a generic C++ optimization library
   19.10 + *
   19.11 + * Copyright (C) 2003-2006
   19.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   19.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   19.14   *
   19.15   * Permission to use, modify and distribute this software is granted
    20.1 --- a/demo/simann_maxcut_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    20.2 +++ b/demo/simann_maxcut_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    20.3 @@ -1,8 +1,9 @@
    20.4  /* -*- C++ -*-
    20.5 - * demo/simann_maxcut_demo.cc - Part of LEMON, a generic C++ optimization
    20.6 - * library
    20.7   *
    20.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    20.9 + * This file is a part of LEMON, a generic C++ optimization library
   20.10 + *
   20.11 + * Copyright (C) 2003-2006
   20.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   20.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   20.14   *
   20.15   * Permission to use, modify and distribute this software is granted
    21.1 --- a/demo/sub_graph_adaptor_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    21.2 +++ b/demo/sub_graph_adaptor_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    21.3 @@ -1,8 +1,9 @@
    21.4  /* -*- C++ -*-
    21.5 - * demo/sub_graph_adaptor_demo.cc - Part of LEMON, a generic C++ optimization
    21.6 - * library
    21.7   *
    21.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    21.9 + * This file is a part of LEMON, a generic C++ optimization library
   21.10 + *
   21.11 + * Copyright (C) 2003-2006
   21.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   21.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   21.14   *
   21.15   * Permission to use, modify and distribute this software is granted
    22.1 --- a/demo/tight_edge_filter_map.h	Fri Feb 03 16:11:08 2006 +0000
    22.2 +++ b/demo/tight_edge_filter_map.h	Fri Feb 03 16:40:16 2006 +0000
    22.3 @@ -1,8 +1,9 @@
    22.4  /* -*- C++ -*-
    22.5 - * demo/tight_edge_filter_map.h - Part of LEMON, a generic C++ optimization
    22.6 - * library
    22.7   *
    22.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    22.9 + * This file is a part of LEMON, a generic C++ optimization library
   22.10 + *
   22.11 + * Copyright (C) 2003-2006
   22.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   22.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   22.14   *
   22.15   * Permission to use, modify and distribute this software is granted
    23.1 --- a/demo/topology_demo.cc	Fri Feb 03 16:11:08 2006 +0000
    23.2 +++ b/demo/topology_demo.cc	Fri Feb 03 16:40:16 2006 +0000
    23.3 @@ -1,7 +1,9 @@
    23.4  /* -*- C++ -*-
    23.5 - * demo/min_route.cc - Part of LEMON, a generic C++ optimization library
    23.6   *
    23.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    23.8 + * This file is a part of LEMON, a generic C++ optimization library
    23.9 + *
   23.10 + * Copyright (C) 2003-2006
   23.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   23.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   23.13   *
   23.14   * Permission to use, modify and distribute this software is granted
    24.1 --- a/lemon/attic/debug.h	Fri Feb 03 16:11:08 2006 +0000
    24.2 +++ b/lemon/attic/debug.h	Fri Feb 03 16:40:16 2006 +0000
    24.3 @@ -1,7 +1,9 @@
    24.4  /* -*- C++ -*-
    24.5 - * lemon/debug.h - Part of LEMON, a generic C++ optimization library
    24.6   *
    24.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    24.8 + * This file is a part of LEMON, a generic C++ optimization library
    24.9 + *
   24.10 + * Copyright (C) 2003-2006
   24.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   24.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   24.13   *
   24.14   * Permission to use, modify and distribute this software is granted
    25.1 --- a/lemon/base.cc	Fri Feb 03 16:11:08 2006 +0000
    25.2 +++ b/lemon/base.cc	Fri Feb 03 16:40:16 2006 +0000
    25.3 @@ -1,7 +1,9 @@
    25.4  /* -*- C++ -*-
    25.5 - * lemon/base.cc - Part of LEMON, a generic C++ optimization library
    25.6   *
    25.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    25.8 + * This file is a part of LEMON, a generic C++ optimization library
    25.9 + *
   25.10 + * Copyright (C) 2003-2006
   25.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   25.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   25.13   *
   25.14   * Permission to use, modify and distribute this software is granted
    26.1 --- a/lemon/bellman_ford.h	Fri Feb 03 16:11:08 2006 +0000
    26.2 +++ b/lemon/bellman_ford.h	Fri Feb 03 16:40:16 2006 +0000
    26.3 @@ -1,7 +1,9 @@
    26.4  /* -*- C++ -*-
    26.5 - * lemon/bellman_ford.h - Part of LEMON, a generic C++ optimization library
    26.6   *
    26.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    26.8 + * This file is a part of LEMON, a generic C++ optimization library
    26.9 + *
   26.10 + * Copyright (C) 2003-2006
   26.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   26.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   26.13   *
   26.14   * Permission to use, modify and distribute this software is granted
    27.1 --- a/lemon/bezier.h	Fri Feb 03 16:11:08 2006 +0000
    27.2 +++ b/lemon/bezier.h	Fri Feb 03 16:40:16 2006 +0000
    27.3 @@ -1,7 +1,9 @@
    27.4  /* -*- C++ -*-
    27.5 - * lemon/bezier.h - Part of LEMON, a generic C++ optimization library
    27.6   *
    27.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    27.8 + * This file is a part of LEMON, a generic C++ optimization library
    27.9 + *
   27.10 + * Copyright (C) 2003-2006
   27.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   27.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   27.13   *
   27.14   * Permission to use, modify and distribute this software is granted
    28.1 --- a/lemon/bfs.h	Fri Feb 03 16:11:08 2006 +0000
    28.2 +++ b/lemon/bfs.h	Fri Feb 03 16:40:16 2006 +0000
    28.3 @@ -1,7 +1,9 @@
    28.4  /* -*- C++ -*-
    28.5 - * lemon/bfs.h - Part of LEMON, a generic C++ optimization library
    28.6   *
    28.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    28.8 + * This file is a part of LEMON, a generic C++ optimization library
    28.9 + *
   28.10 + * Copyright (C) 2003-2006
   28.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   28.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   28.13   *
   28.14   * Permission to use, modify and distribute this software is granted
    29.1 --- a/lemon/bin_heap.h	Fri Feb 03 16:11:08 2006 +0000
    29.2 +++ b/lemon/bin_heap.h	Fri Feb 03 16:40:16 2006 +0000
    29.3 @@ -1,7 +1,9 @@
    29.4  /* -*- C++ -*-
    29.5 - * lemon/bin_heap.h - Part of LEMON, a generic C++ optimization library
    29.6   *
    29.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    29.8 + * This file is a part of LEMON, a generic C++ optimization library
    29.9 + *
   29.10 + * Copyright (C) 2003-2006
   29.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   29.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   29.13   *
   29.14   * Permission to use, modify and distribute this software is granted
    30.1 --- a/lemon/bits/alteration_notifier.h	Fri Feb 03 16:11:08 2006 +0000
    30.2 +++ b/lemon/bits/alteration_notifier.h	Fri Feb 03 16:40:16 2006 +0000
    30.3 @@ -1,8 +1,10 @@
    30.4  /* -*- C++ -*-
    30.5 - * lemon/notifier.h - Part of LEMON, a generic C++ optimization library
    30.6   *
    30.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    30.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    30.9 + * This file is a part of LEMON, a generic C++ optimization library
   30.10 + *
   30.11 + * Copyright (C) 2003-2006
   30.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   30.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   30.14   *
   30.15   * Permission to use, modify and distribute this software is granted
   30.16   * provided that this copyright notice appears in all copies. For
    31.1 --- a/lemon/bits/array_map.h	Fri Feb 03 16:11:08 2006 +0000
    31.2 +++ b/lemon/bits/array_map.h	Fri Feb 03 16:40:16 2006 +0000
    31.3 @@ -1,8 +1,10 @@
    31.4  /* -*- C++ -*-
    31.5 - * lemon/bits/array_map.h - Part of LEMON, a generic C++ optimization library
    31.6   *
    31.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    31.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    31.9 + * This file is a part of LEMON, a generic C++ optimization library
   31.10 + *
   31.11 + * Copyright (C) 2003-2006
   31.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   31.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   31.14   *
   31.15   * Permission to use, modify and distribute this software is granted
   31.16   * provided that this copyright notice appears in all copies. For
    32.1 --- a/lemon/bits/clearable_graph_extender.h	Fri Feb 03 16:11:08 2006 +0000
    32.2 +++ b/lemon/bits/clearable_graph_extender.h	Fri Feb 03 16:40:16 2006 +0000
    32.3 @@ -1,4 +1,20 @@
    32.4 -// -*- c++ -*-
    32.5 +/* -*- C++ -*-
    32.6 + *
    32.7 + * This file is a part of LEMON, a generic C++ optimization library
    32.8 + *
    32.9 + * Copyright (C) 2003-2006
   32.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   32.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   32.12 + *
   32.13 + * Permission to use, modify and distribute this software is granted
   32.14 + * provided that this copyright notice appears in all copies. For
   32.15 + * precise terms see the accompanying LICENSE file.
   32.16 + *
   32.17 + * This software is provided "AS IS" with no warranty of any kind,
   32.18 + * express or implied, and with no claim as to its suitability for any
   32.19 + * purpose.
   32.20 + *
   32.21 + */
   32.22  
   32.23  #ifndef LEMON_CLEARABLE_GRAPH_EXTENDER_H
   32.24  #define LEMON_CLEARABLE_GRAPH_EXTENDER_H
    33.1 --- a/lemon/bits/default_map.h	Fri Feb 03 16:11:08 2006 +0000
    33.2 +++ b/lemon/bits/default_map.h	Fri Feb 03 16:40:16 2006 +0000
    33.3 @@ -1,8 +1,10 @@
    33.4  /* -*- C++ -*-
    33.5 - * lemon/default_map.h - Part of LEMON, a generic C++ optimization library
    33.6   *
    33.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    33.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    33.9 + * This file is a part of LEMON, a generic C++ optimization library
   33.10 + *
   33.11 + * Copyright (C) 2003-2006
   33.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   33.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   33.14   *
   33.15   * Permission to use, modify and distribute this software is granted
   33.16   * provided that this copyright notice appears in all copies. For
    34.1 --- a/lemon/bits/erasable_graph_extender.h	Fri Feb 03 16:11:08 2006 +0000
    34.2 +++ b/lemon/bits/erasable_graph_extender.h	Fri Feb 03 16:40:16 2006 +0000
    34.3 @@ -1,4 +1,20 @@
    34.4 -// -*- c++ -*-
    34.5 +/* -*- C++ -*-
    34.6 + *
    34.7 + * This file is a part of LEMON, a generic C++ optimization library
    34.8 + *
    34.9 + * Copyright (C) 2003-2006
   34.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   34.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   34.12 + *
   34.13 + * Permission to use, modify and distribute this software is granted
   34.14 + * provided that this copyright notice appears in all copies. For
   34.15 + * precise terms see the accompanying LICENSE file.
   34.16 + *
   34.17 + * This software is provided "AS IS" with no warranty of any kind,
   34.18 + * express or implied, and with no claim as to its suitability for any
   34.19 + * purpose.
   34.20 + *
   34.21 + */
   34.22  
   34.23  #ifndef LEMON_ERASABLE_GRAPH_EXTENDER_H
   34.24  #define LEMON_ERASABLE_GRAPH_EXTENDER_H
    35.1 --- a/lemon/bits/extendable_graph_extender.h	Fri Feb 03 16:11:08 2006 +0000
    35.2 +++ b/lemon/bits/extendable_graph_extender.h	Fri Feb 03 16:40:16 2006 +0000
    35.3 @@ -1,4 +1,20 @@
    35.4 -// -*- c++ -*-
    35.5 +/* -*- C++ -*-
    35.6 + *
    35.7 + * This file is a part of LEMON, a generic C++ optimization library
    35.8 + *
    35.9 + * Copyright (C) 2003-2006
   35.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   35.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   35.12 + *
   35.13 + * Permission to use, modify and distribute this software is granted
   35.14 + * provided that this copyright notice appears in all copies. For
   35.15 + * precise terms see the accompanying LICENSE file.
   35.16 + *
   35.17 + * This software is provided "AS IS" with no warranty of any kind,
   35.18 + * express or implied, and with no claim as to its suitability for any
   35.19 + * purpose.
   35.20 + *
   35.21 + */
   35.22  
   35.23  #ifndef LEMON_EXTENDABLE_GRAPH_EXTENDER_H
   35.24  #define LEMON_EXTENDABLE_GRAPH_EXTENDER_H
    36.1 --- a/lemon/bits/graph_extender.h	Fri Feb 03 16:11:08 2006 +0000
    36.2 +++ b/lemon/bits/graph_extender.h	Fri Feb 03 16:40:16 2006 +0000
    36.3 @@ -1,9 +1,10 @@
    36.4  /* -*- C++ -*-
    36.5 - * lemon/graph_extender.h - Part of LEMON, a generic C++ optimization library
    36.6   *
    36.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi
    36.8 - * Kutatocsoport (Egervary Research Groin on Combinatorial Optimization,
    36.9 - * EGRES).
   36.10 + * This file is a part of LEMON, a generic C++ optimization library
   36.11 + *
   36.12 + * Copyright (C) 2003-2006
   36.13 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   36.14 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   36.15   *
   36.16   * Permission to use, modify and distribute this software is granted
   36.17   * provided that this copyright notice appears in all copies. For
    37.1 --- a/lemon/bits/item_reader.h	Fri Feb 03 16:11:08 2006 +0000
    37.2 +++ b/lemon/bits/item_reader.h	Fri Feb 03 16:40:16 2006 +0000
    37.3 @@ -1,8 +1,10 @@
    37.4  /* -*- C++ -*-
    37.5 - * lemon/bits/item_reader.h - Part of LEMON, a generic C++ optimization library
    37.6   *
    37.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    37.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    37.9 + * This file is a part of LEMON, a generic C++ optimization library
   37.10 + *
   37.11 + * Copyright (C) 2003-2006
   37.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   37.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   37.14   *
   37.15   * Permission to use, modify and distribute this software is granted
   37.16   * provided that this copyright notice appears in all copies. For
    38.1 --- a/lemon/bits/item_writer.h	Fri Feb 03 16:11:08 2006 +0000
    38.2 +++ b/lemon/bits/item_writer.h	Fri Feb 03 16:40:16 2006 +0000
    38.3 @@ -1,8 +1,10 @@
    38.4  /* -*- C++ -*-
    38.5 - * lemon/bits/item_reader.h - Part of LEMON, a generic C++ optimization library
    38.6   *
    38.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    38.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    38.9 + * This file is a part of LEMON, a generic C++ optimization library
   38.10 + *
   38.11 + * Copyright (C) 2003-2006
   38.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   38.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   38.14   *
   38.15   * Permission to use, modify and distribute this software is granted
   38.16   * provided that this copyright notice appears in all copies. For
    39.1 --- a/lemon/bits/iterable_graph_extender.h	Fri Feb 03 16:11:08 2006 +0000
    39.2 +++ b/lemon/bits/iterable_graph_extender.h	Fri Feb 03 16:40:16 2006 +0000
    39.3 @@ -1,4 +1,21 @@
    39.4 -// -*- c++ -*-
    39.5 +/* -*- C++ -*-
    39.6 + *
    39.7 + * This file is a part of LEMON, a generic C++ optimization library
    39.8 + *
    39.9 + * Copyright (C) 2003-2006
   39.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   39.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   39.12 + *
   39.13 + * Permission to use, modify and distribute this software is granted
   39.14 + * provided that this copyright notice appears in all copies. For
   39.15 + * precise terms see the accompanying LICENSE file.
   39.16 + *
   39.17 + * This software is provided "AS IS" with no warranty of any kind,
   39.18 + * express or implied, and with no claim as to its suitability for any
   39.19 + * purpose.
   39.20 + *
   39.21 + */
   39.22 +
   39.23  #ifndef LEMON_ITERABLE_GRAPH_EXTENDER_H
   39.24  #define LEMON_ITERABLE_GRAPH_EXTENDER_H
   39.25  
    40.1 --- a/lemon/bits/map_extender.h	Fri Feb 03 16:11:08 2006 +0000
    40.2 +++ b/lemon/bits/map_extender.h	Fri Feb 03 16:40:16 2006 +0000
    40.3 @@ -1,8 +1,10 @@
    40.4  /* -*- C++ -*-
    40.5 - * lemon/map_extender.h - Part of LEMON, a generic C++ optimization library
    40.6   *
    40.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    40.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    40.9 + * This file is a part of LEMON, a generic C++ optimization library
   40.10 + *
   40.11 + * Copyright (C) 2003-2006
   40.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   40.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   40.14   *
   40.15   * Permission to use, modify and distribute this software is granted
   40.16   * provided that this copyright notice appears in all copies. For
    41.1 --- a/lemon/bits/static_map.h	Fri Feb 03 16:11:08 2006 +0000
    41.2 +++ b/lemon/bits/static_map.h	Fri Feb 03 16:40:16 2006 +0000
    41.3 @@ -1,8 +1,10 @@
    41.4  /* -*- C++ -*-
    41.5 - * lemon/static_map.h - Part of LEMON, a generic C++ optimization library
    41.6   *
    41.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    41.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    41.9 + * This file is a part of LEMON, a generic C++ optimization library
   41.10 + *
   41.11 + * Copyright (C) 2003-2006
   41.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   41.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   41.14   *
   41.15   * Permission to use, modify and distribute this software is granted
   41.16   * provided that this copyright notice appears in all copies. For
    42.1 --- a/lemon/bits/vector_map.h	Fri Feb 03 16:11:08 2006 +0000
    42.2 +++ b/lemon/bits/vector_map.h	Fri Feb 03 16:40:16 2006 +0000
    42.3 @@ -1,8 +1,10 @@
    42.4  /* -*- C++ -*-
    42.5 - * lemon/vector_map.h - Part of LEMON, a generic C++ optimization library
    42.6   *
    42.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    42.8 - * (Egervary Research Groin on Combinatorial Optimization, EGRES).
    42.9 + * This file is a part of LEMON, a generic C++ optimization library
   42.10 + *
   42.11 + * Copyright (C) 2003-2006
   42.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   42.13 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   42.14   *
   42.15   * Permission to use, modify and distribute this software is granted
   42.16   * provided that this copyright notice appears in all copies. For
    43.1 --- a/lemon/concept/bpugraph.h	Fri Feb 03 16:11:08 2006 +0000
    43.2 +++ b/lemon/concept/bpugraph.h	Fri Feb 03 16:40:16 2006 +0000
    43.3 @@ -1,11 +1,10 @@
    43.4  /* -*- C++ -*-
    43.5   *
    43.6 - * lemon/concept/ugraph_component.h - Part of LEMON, a generic
    43.7 - * C++ optimization library
    43.8 + * This file is a part of LEMON, a generic C++ optimization library
    43.9   *
   43.10 - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi
   43.11 - * Kutatocsoport (Egervary Research Group on Combinatorial Optimization,
   43.12 - * EGRES).
   43.13 + * Copyright (C) 2003-2006
   43.14 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   43.15 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   43.16   *
   43.17   * Permission to use, modify and distribute this software is granted
   43.18   * provided that this copyright notice appears in all copies. For
    44.1 --- a/lemon/concept/graph.h	Fri Feb 03 16:11:08 2006 +0000
    44.2 +++ b/lemon/concept/graph.h	Fri Feb 03 16:40:16 2006 +0000
    44.3 @@ -1,7 +1,9 @@
    44.4  /* -*- C++ -*-
    44.5 - * lemon/concept/graph.h - Part of LEMON, a generic C++ optimization library
    44.6   *
    44.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    44.8 + * This file is a part of LEMON, a generic C++ optimization library
    44.9 + *
   44.10 + * Copyright (C) 2003-2006
   44.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   44.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   44.13   *
   44.14   * Permission to use, modify and distribute this software is granted
    45.1 --- a/lemon/concept/graph_component.h	Fri Feb 03 16:11:08 2006 +0000
    45.2 +++ b/lemon/concept/graph_component.h	Fri Feb 03 16:40:16 2006 +0000
    45.3 @@ -1,7 +1,9 @@
    45.4  /* -*- C++ -*-
    45.5 - * lemon/concept/graph_component.h - Part of LEMON, a generic C++ optimization library
    45.6   *
    45.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    45.8 + * This file is a part of LEMON, a generic C++ optimization library
    45.9 + *
   45.10 + * Copyright (C) 2003-2006
   45.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   45.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   45.13   *
   45.14   * Permission to use, modify and distribute this software is granted
    46.1 --- a/lemon/concept/heap.h	Fri Feb 03 16:11:08 2006 +0000
    46.2 +++ b/lemon/concept/heap.h	Fri Feb 03 16:40:16 2006 +0000
    46.3 @@ -1,7 +1,9 @@
    46.4  /* -*- C++ -*-
    46.5 - * lemon/concept/heap.h - Part of LEMON, a generic C++ optimization library
    46.6   *
    46.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    46.8 + * This file is a part of LEMON, a generic C++ optimization library
    46.9 + *
   46.10 + * Copyright (C) 2003-2006
   46.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   46.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   46.13   *
   46.14   * Permission to use, modify and distribute this software is granted
    47.1 --- a/lemon/concept/maps.h	Fri Feb 03 16:11:08 2006 +0000
    47.2 +++ b/lemon/concept/maps.h	Fri Feb 03 16:40:16 2006 +0000
    47.3 @@ -1,7 +1,9 @@
    47.4  /* -*- C++ -*-
    47.5 - * lemon/concept/maps.h - Part of LEMON, a generic C++ optimization library
    47.6   *
    47.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    47.8 + * This file is a part of LEMON, a generic C++ optimization library
    47.9 + *
   47.10 + * Copyright (C) 2003-2006
   47.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   47.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   47.13   *
   47.14   * Permission to use, modify and distribute this software is granted
    48.1 --- a/lemon/concept/matrix_maps.h	Fri Feb 03 16:11:08 2006 +0000
    48.2 +++ b/lemon/concept/matrix_maps.h	Fri Feb 03 16:40:16 2006 +0000
    48.3 @@ -1,7 +1,9 @@
    48.4  /* -*- C++ -*-
    48.5 - * lemon/concept/matrix_maps.h - Part of LEMON, a generic C++ optimization library
    48.6   *
    48.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    48.8 + * This file is a part of LEMON, a generic C++ optimization library
    48.9 + *
   48.10 + * Copyright (C) 2003-2006
   48.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   48.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   48.13   *
   48.14   * Permission to use, modify and distribute this software is granted
    49.1 --- a/lemon/concept/path.h	Fri Feb 03 16:11:08 2006 +0000
    49.2 +++ b/lemon/concept/path.h	Fri Feb 03 16:40:16 2006 +0000
    49.3 @@ -1,7 +1,9 @@
    49.4  /* -*- C++ -*-
    49.5 - * lemon/concept/path.h - Part of LEMON, a generic C++ optimization library
    49.6   *
    49.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    49.8 + * This file is a part of LEMON, a generic C++ optimization library
    49.9 + *
   49.10 + * Copyright (C) 2003-2006
   49.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   49.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   49.13   *
   49.14   * Permission to use, modify and distribute this software is granted
    50.1 --- a/lemon/concept/ugraph.h	Fri Feb 03 16:11:08 2006 +0000
    50.2 +++ b/lemon/concept/ugraph.h	Fri Feb 03 16:40:16 2006 +0000
    50.3 @@ -1,11 +1,10 @@
    50.4  /* -*- C++ -*-
    50.5   *
    50.6 - * lemon/concept/ugraph_component.h - Part of LEMON, a generic
    50.7 - * C++ optimization library
    50.8 + * This file is a part of LEMON, a generic C++ optimization library
    50.9   *
   50.10 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi
   50.11 - * Kutatocsoport (Egervary Research Group on Combinatorial Optimization,
   50.12 - * EGRES).
   50.13 + * Copyright (C) 2003-2006
   50.14 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   50.15 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   50.16   *
   50.17   * Permission to use, modify and distribute this software is granted
   50.18   * provided that this copyright notice appears in all copies. For
    51.1 --- a/lemon/concept_check.h	Fri Feb 03 16:11:08 2006 +0000
    51.2 +++ b/lemon/concept_check.h	Fri Feb 03 16:40:16 2006 +0000
    51.3 @@ -1,8 +1,24 @@
    51.4 -// -*- C++ -*-
    51.5 +/* -*- C++ -*-
    51.6 + *
    51.7 + * This file is a part of LEMON, a generic C++ optimization library
    51.8 + *
    51.9 + * Copyright (C) 2003-2006
   51.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   51.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   51.12 + *
   51.13 + * Permission to use, modify and distribute this software is granted
   51.14 + * provided that this copyright notice appears in all copies. For
   51.15 + * precise terms see the accompanying LICENSE file.
   51.16 + *
   51.17 + * This software is provided "AS IS" with no warranty of any kind,
   51.18 + * express or implied, and with no claim as to its suitability for any
   51.19 + * purpose.
   51.20 + *
   51.21 + */
   51.22 +
   51.23  // Modified for use in LEMON.
   51.24  // We should really consider using Boost...
   51.25  
   51.26 -
   51.27  //
   51.28  // (C) Copyright Jeremy Siek 2000.
   51.29  // Distributed under the Boost Software License, Version 1.0. (See
    52.1 --- a/lemon/counter.h	Fri Feb 03 16:11:08 2006 +0000
    52.2 +++ b/lemon/counter.h	Fri Feb 03 16:40:16 2006 +0000
    52.3 @@ -1,8 +1,9 @@
    52.4  /* -*- C++ -*-
    52.5 - * lemon/counter.h - 
    52.6 - * Part of LEMON, a generic C++ optimization library
    52.7   *
    52.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    52.9 + * This file is a part of LEMON, a generic C++ optimization library
   52.10 + *
   52.11 + * Copyright (C) 2003-2006
   52.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   52.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   52.14   *
   52.15   * Permission to use, modify and distribute this software is granted
    53.1 --- a/lemon/dag_shortest_path.h	Fri Feb 03 16:11:08 2006 +0000
    53.2 +++ b/lemon/dag_shortest_path.h	Fri Feb 03 16:40:16 2006 +0000
    53.3 @@ -1,7 +1,9 @@
    53.4  /* -*- C++ -*-
    53.5 - * lemon/dag_shortest_path.h - Part of LEMON, a generic C++ optimization library
    53.6   *
    53.7 - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    53.8 + * This file is a part of LEMON, a generic C++ optimization library
    53.9 + *
   53.10 + * Copyright (C) 2003-2006
   53.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   53.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   53.13   *
   53.14   * Permission to use, modify and distribute this software is granted
    54.1 --- a/lemon/dfs.h	Fri Feb 03 16:11:08 2006 +0000
    54.2 +++ b/lemon/dfs.h	Fri Feb 03 16:40:16 2006 +0000
    54.3 @@ -1,7 +1,9 @@
    54.4  /* -*- C++ -*-
    54.5 - * lemon/dfs.h - Part of LEMON, a generic C++ optimization library
    54.6   *
    54.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    54.8 + * This file is a part of LEMON, a generic C++ optimization library
    54.9 + *
   54.10 + * Copyright (C) 2003-2006
   54.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   54.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   54.13   *
   54.14   * Permission to use, modify and distribute this software is granted
    55.1 --- a/lemon/dijkstra.h	Fri Feb 03 16:11:08 2006 +0000
    55.2 +++ b/lemon/dijkstra.h	Fri Feb 03 16:40:16 2006 +0000
    55.3 @@ -1,7 +1,9 @@
    55.4  /* -*- C++ -*-
    55.5 - * lemon/dijkstra.h - Part of LEMON, a generic C++ optimization library
    55.6   *
    55.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    55.8 + * This file is a part of LEMON, a generic C++ optimization library
    55.9 + *
   55.10 + * Copyright (C) 2003-2006
   55.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   55.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   55.13   *
   55.14   * Permission to use, modify and distribute this software is granted
    56.1 --- a/lemon/dimacs.h	Fri Feb 03 16:11:08 2006 +0000
    56.2 +++ b/lemon/dimacs.h	Fri Feb 03 16:40:16 2006 +0000
    56.3 @@ -1,7 +1,9 @@
    56.4  /* -*- C++ -*-
    56.5 - * lemon/dimacs.h - Part of LEMON, a generic C++ optimization library
    56.6   *
    56.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    56.8 + * This file is a part of LEMON, a generic C++ optimization library
    56.9 + *
   56.10 + * Copyright (C) 2003-2006
   56.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   56.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   56.13   *
   56.14   * Permission to use, modify and distribute this software is granted
    57.1 --- a/lemon/edge_set.h	Fri Feb 03 16:11:08 2006 +0000
    57.2 +++ b/lemon/edge_set.h	Fri Feb 03 16:40:16 2006 +0000
    57.3 @@ -1,7 +1,9 @@
    57.4  /* -*- C++ -*-
    57.5 - * lemon/edge_set.h - Part of LEMON, a generic C++ optimization library
    57.6   *
    57.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    57.8 + * This file is a part of LEMON, a generic C++ optimization library
    57.9 + *
   57.10 + * Copyright (C) 2003-2006
   57.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   57.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   57.13   *
   57.14   * Permission to use, modify and distribute this software is granted
    58.1 --- a/lemon/error.h	Fri Feb 03 16:11:08 2006 +0000
    58.2 +++ b/lemon/error.h	Fri Feb 03 16:40:16 2006 +0000
    58.3 @@ -1,9 +1,10 @@
    58.4  /* -*- C++ -*-
    58.5 - * lemon/error.h - Part of LEMON, a generic C++ optimization library
    58.6   *
    58.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi
    58.8 - * Kutatocsoport (Egervary Research Group on Combinatorial Optimization,
    58.9 - * EGRES).
   58.10 + * This file is a part of LEMON, a generic C++ optimization library
   58.11 + *
   58.12 + * Copyright (C) 2003-2006
   58.13 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   58.14 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   58.15   *
   58.16   * Permission to use, modify and distribute this software is granted
   58.17   * provided that this copyright notice appears in all copies. For
    59.1 --- a/lemon/euler.h	Fri Feb 03 16:11:08 2006 +0000
    59.2 +++ b/lemon/euler.h	Fri Feb 03 16:40:16 2006 +0000
    59.3 @@ -1,7 +1,9 @@
    59.4  /* -*- C++ -*-
    59.5 - * lemon/euler.h - Part of LEMON, a generic C++ optimization library
    59.6   *
    59.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    59.8 + * This file is a part of LEMON, a generic C++ optimization library
    59.9 + *
   59.10 + * Copyright (C) 2003-2006
   59.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   59.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   59.13   *
   59.14   * Permission to use, modify and distribute this software is granted
   59.15 @@ -13,6 +15,7 @@
   59.16   * purpose.
   59.17   *
   59.18   */
   59.19 +
   59.20  #include<lemon/invalid.h>
   59.21  #include<lemon/topology.h>
   59.22  #include <list>
    60.1 --- a/lemon/fib_heap.h	Fri Feb 03 16:11:08 2006 +0000
    60.2 +++ b/lemon/fib_heap.h	Fri Feb 03 16:40:16 2006 +0000
    60.3 @@ -1,7 +1,9 @@
    60.4  /* -*- C++ -*-
    60.5 - * lemon/fib_heap.h - Part of LEMON, a generic C++ optimization library
    60.6   *
    60.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    60.8 + * This file is a part of LEMON, a generic C++ optimization library
    60.9 + *
   60.10 + * Copyright (C) 2003-2006
   60.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   60.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   60.13   *
   60.14   * Permission to use, modify and distribute this software is granted
    61.1 --- a/lemon/floyd_warshall.h	Fri Feb 03 16:11:08 2006 +0000
    61.2 +++ b/lemon/floyd_warshall.h	Fri Feb 03 16:40:16 2006 +0000
    61.3 @@ -1,7 +1,9 @@
    61.4  /* -*- C++ -*-
    61.5 - * lemon/floyd_warshall.h - Part of LEMON, a generic C++ optimization library
    61.6   *
    61.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    61.8 + * This file is a part of LEMON, a generic C++ optimization library
    61.9 + *
   61.10 + * Copyright (C) 2003-2006
   61.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   61.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   61.13   *
   61.14   * Permission to use, modify and distribute this software is granted
    62.1 --- a/lemon/fredman_tarjan.h	Fri Feb 03 16:11:08 2006 +0000
    62.2 +++ b/lemon/fredman_tarjan.h	Fri Feb 03 16:40:16 2006 +0000
    62.3 @@ -1,7 +1,9 @@
    62.4  /* -*- C++ -*-
    62.5 - * lemon/fredman_tarjan.h - Part of LEMON, a generic C++ optimization library
    62.6   *
    62.7 - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    62.8 + * This file is a part of LEMON, a generic C++ optimization library
    62.9 + *
   62.10 + * Copyright (C) 2003-2006
   62.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   62.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   62.13   *
   62.14   * Permission to use, modify and distribute this software is granted
    63.1 --- a/lemon/full_graph.h	Fri Feb 03 16:11:08 2006 +0000
    63.2 +++ b/lemon/full_graph.h	Fri Feb 03 16:40:16 2006 +0000
    63.3 @@ -1,7 +1,9 @@
    63.4  /* -*- C++ -*-
    63.5 - * lemon/full_graph.h - Part of LEMON, a generic C++ optimization library
    63.6   *
    63.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    63.8 + * This file is a part of LEMON, a generic C++ optimization library
    63.9 + *
   63.10 + * Copyright (C) 2003-2006
   63.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   63.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   63.13   *
   63.14   * Permission to use, modify and distribute this software is granted
    64.1 --- a/lemon/graph_adaptor.h	Fri Feb 03 16:11:08 2006 +0000
    64.2 +++ b/lemon/graph_adaptor.h	Fri Feb 03 16:40:16 2006 +0000
    64.3 @@ -1,7 +1,9 @@
    64.4  /* -*- C++ -*-
    64.5 - * lemon/graph_adaptor.h - Part of LEMON, a generic C++ optimization library
    64.6   *
    64.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    64.8 + * This file is a part of LEMON, a generic C++ optimization library
    64.9 + *
   64.10 + * Copyright (C) 2003-2006
   64.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   64.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   64.13   *
   64.14   * Permission to use, modify and distribute this software is granted
    65.1 --- a/lemon/graph_reader.h	Fri Feb 03 16:11:08 2006 +0000
    65.2 +++ b/lemon/graph_reader.h	Fri Feb 03 16:40:16 2006 +0000
    65.3 @@ -1,7 +1,9 @@
    65.4  /* -*- C++ -*-
    65.5 - * lemon/graph_reader.h - Part of LEMON, a generic C++ optimization library
    65.6   *
    65.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    65.8 + * This file is a part of LEMON, a generic C++ optimization library
    65.9 + *
   65.10 + * Copyright (C) 2003-2006
   65.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   65.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   65.13   *
   65.14   * Permission to use, modify and distribute this software is granted
    66.1 --- a/lemon/graph_to_eps.h	Fri Feb 03 16:11:08 2006 +0000
    66.2 +++ b/lemon/graph_to_eps.h	Fri Feb 03 16:40:16 2006 +0000
    66.3 @@ -1,7 +1,9 @@
    66.4  /* -*- C++ -*-
    66.5 - * lemon/graph_to_eps.h - Part of LEMON, a generic C++ optimization library
    66.6   *
    66.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    66.8 + * This file is a part of LEMON, a generic C++ optimization library
    66.9 + *
   66.10 + * Copyright (C) 2003-2006
   66.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   66.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   66.13   *
   66.14   * Permission to use, modify and distribute this software is granted
    67.1 --- a/lemon/graph_utils.h	Fri Feb 03 16:11:08 2006 +0000
    67.2 +++ b/lemon/graph_utils.h	Fri Feb 03 16:40:16 2006 +0000
    67.3 @@ -1,7 +1,9 @@
    67.4  /* -*- C++ -*-
    67.5 - * lemon/graph_utils.h - Part of LEMON, a generic C++ optimization library
    67.6   *
    67.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    67.8 + * This file is a part of LEMON, a generic C++ optimization library
    67.9 + *
   67.10 + * Copyright (C) 2003-2006
   67.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   67.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   67.13   *
   67.14   * Permission to use, modify and distribute this software is granted
    68.1 --- a/lemon/graph_writer.h	Fri Feb 03 16:11:08 2006 +0000
    68.2 +++ b/lemon/graph_writer.h	Fri Feb 03 16:40:16 2006 +0000
    68.3 @@ -1,7 +1,9 @@
    68.4  /* -*- C++ -*-
    68.5 - * lemon/graph_writer.h - Part of LEMON, a generic C++ optimization library
    68.6   *
    68.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    68.8 + * This file is a part of LEMON, a generic C++ optimization library
    68.9 + *
   68.10 + * Copyright (C) 2003-2006
   68.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   68.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   68.13   *
   68.14   * Permission to use, modify and distribute this software is granted
    69.1 --- a/lemon/grid_graph.h	Fri Feb 03 16:11:08 2006 +0000
    69.2 +++ b/lemon/grid_graph.h	Fri Feb 03 16:40:16 2006 +0000
    69.3 @@ -1,7 +1,9 @@
    69.4  /* -*- C++ -*-
    69.5 - * lemon/grid_graph.h - Part of LEMON, a generic C++ optimization library
    69.6   *
    69.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    69.8 + * This file is a part of LEMON, a generic C++ optimization library
    69.9 + *
   69.10 + * Copyright (C) 2003-2006
   69.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   69.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   69.13   *
   69.14   * Permission to use, modify and distribute this software is granted
    70.1 --- a/lemon/hypercube_graph.h	Fri Feb 03 16:11:08 2006 +0000
    70.2 +++ b/lemon/hypercube_graph.h	Fri Feb 03 16:40:16 2006 +0000
    70.3 @@ -1,7 +1,9 @@
    70.4  /* -*- C++ -*-
    70.5 - * lemon/hypercube_graph.h - Part of LEMON, a generic C++ optimization library
    70.6   *
    70.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    70.8 + * This file is a part of LEMON, a generic C++ optimization library
    70.9 + *
   70.10 + * Copyright (C) 2003-2006
   70.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   70.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   70.13   *
   70.14   * Permission to use, modify and distribute this software is granted
    71.1 --- a/lemon/invalid.h	Fri Feb 03 16:11:08 2006 +0000
    71.2 +++ b/lemon/invalid.h	Fri Feb 03 16:40:16 2006 +0000
    71.3 @@ -1,7 +1,9 @@
    71.4  /* -*- C++ -*-
    71.5 - * lemon/invalid.h - Part of LEMON, a generic C++ optimization library
    71.6   *
    71.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    71.8 + * This file is a part of LEMON, a generic C++ optimization library
    71.9 + *
   71.10 + * Copyright (C) 2003-2006
   71.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   71.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   71.13   *
   71.14   * Permission to use, modify and distribute this software is granted
    72.1 --- a/lemon/iterable_maps.h	Fri Feb 03 16:11:08 2006 +0000
    72.2 +++ b/lemon/iterable_maps.h	Fri Feb 03 16:40:16 2006 +0000
    72.3 @@ -1,7 +1,9 @@
    72.4  /* -*- C++ -*-
    72.5 - * lemon/iterable_maps.h - Part of LEMON, a generic C++ optimization library
    72.6   *
    72.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    72.8 + * This file is a part of LEMON, a generic C++ optimization library
    72.9 + *
   72.10 + * Copyright (C) 2003-2006
   72.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   72.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   72.13   *
   72.14   * Permission to use, modify and distribute this software is granted
    73.1 --- a/lemon/johnson.h	Fri Feb 03 16:11:08 2006 +0000
    73.2 +++ b/lemon/johnson.h	Fri Feb 03 16:40:16 2006 +0000
    73.3 @@ -1,7 +1,9 @@
    73.4  /* -*- C++ -*-
    73.5 - * lemon/johnson.h - Part of LEMON, a generic C++ optimization library
    73.6   *
    73.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    73.8 + * This file is a part of LEMON, a generic C++ optimization library
    73.9 + *
   73.10 + * Copyright (C) 2003-2006
   73.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   73.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   73.13   *
   73.14   * Permission to use, modify and distribute this software is granted
    74.1 --- a/lemon/kruskal.h	Fri Feb 03 16:11:08 2006 +0000
    74.2 +++ b/lemon/kruskal.h	Fri Feb 03 16:40:16 2006 +0000
    74.3 @@ -1,7 +1,9 @@
    74.4  /* -*- C++ -*-
    74.5 - * lemon/kruskal.h - Part of LEMON, a generic C++ optimization library
    74.6   *
    74.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    74.8 + * This file is a part of LEMON, a generic C++ optimization library
    74.9 + *
   74.10 + * Copyright (C) 2003-2006
   74.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   74.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   74.13   *
   74.14   * Permission to use, modify and distribute this software is granted
    75.1 --- a/lemon/lemon_reader.h	Fri Feb 03 16:11:08 2006 +0000
    75.2 +++ b/lemon/lemon_reader.h	Fri Feb 03 16:40:16 2006 +0000
    75.3 @@ -1,7 +1,9 @@
    75.4  /* -*- C++ -*-
    75.5 - * lemon/lemon_reader.h - Part of LEMON, a generic C++ optimization library
    75.6   *
    75.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    75.8 + * This file is a part of LEMON, a generic C++ optimization library
    75.9 + *
   75.10 + * Copyright (C) 2003-2006
   75.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   75.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   75.13   *
   75.14   * Permission to use, modify and distribute this software is granted
    76.1 --- a/lemon/lemon_writer.h	Fri Feb 03 16:11:08 2006 +0000
    76.2 +++ b/lemon/lemon_writer.h	Fri Feb 03 16:40:16 2006 +0000
    76.3 @@ -1,7 +1,9 @@
    76.4  /* -*- C++ -*-
    76.5 - * lemon/lemon_writer.h - Part of LEMON, a generic C++ optimization library
    76.6   *
    76.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    76.8 + * This file is a part of LEMON, a generic C++ optimization library
    76.9 + *
   76.10 + * Copyright (C) 2003-2006
   76.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   76.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   76.13   *
   76.14   * Permission to use, modify and distribute this software is granted
    77.1 --- a/lemon/linear_heap.h	Fri Feb 03 16:11:08 2006 +0000
    77.2 +++ b/lemon/linear_heap.h	Fri Feb 03 16:40:16 2006 +0000
    77.3 @@ -1,7 +1,9 @@
    77.4  /* -*- C++ -*-
    77.5 - * lemon/linear_heap.h - Part of LEMON, a generic C++ optimization library
    77.6   *
    77.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    77.8 + * This file is a part of LEMON, a generic C++ optimization library
    77.9 + *
   77.10 + * Copyright (C) 2003-2006
   77.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   77.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   77.13   *
   77.14   * Permission to use, modify and distribute this software is granted
    78.1 --- a/lemon/list_graph.h	Fri Feb 03 16:11:08 2006 +0000
    78.2 +++ b/lemon/list_graph.h	Fri Feb 03 16:40:16 2006 +0000
    78.3 @@ -1,7 +1,9 @@
    78.4  /* -*- C++ -*-
    78.5 - * lemon/list_graph.h - Part of LEMON, a generic C++ optimization library
    78.6   *
    78.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    78.8 + * This file is a part of LEMON, a generic C++ optimization library
    78.9 + *
   78.10 + * Copyright (C) 2003-2006
   78.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   78.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   78.13   *
   78.14   * Permission to use, modify and distribute this software is granted
    79.1 --- a/lemon/lp.h	Fri Feb 03 16:11:08 2006 +0000
    79.2 +++ b/lemon/lp.h	Fri Feb 03 16:40:16 2006 +0000
    79.3 @@ -1,7 +1,9 @@
    79.4  /* -*- C++ -*-
    79.5 - * lemon/lp.h - Part of LEMON, a generic C++ optimization library
    79.6   *
    79.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    79.8 + * This file is a part of LEMON, a generic C++ optimization library
    79.9 + *
   79.10 + * Copyright (C) 2003-2006
   79.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   79.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   79.13   *
   79.14   * Permission to use, modify and distribute this software is granted
    80.1 --- a/lemon/lp_base.cc	Fri Feb 03 16:11:08 2006 +0000
    80.2 +++ b/lemon/lp_base.cc	Fri Feb 03 16:40:16 2006 +0000
    80.3 @@ -1,7 +1,9 @@
    80.4  /* -*- C++ -*-
    80.5 - * lemon/lp_base.cc - Part of LEMON, a generic C++ optimization library
    80.6   *
    80.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    80.8 + * This file is a part of LEMON, a generic C++ optimization library
    80.9 + *
   80.10 + * Copyright (C) 2003-2006
   80.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   80.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   80.13   *
   80.14   * Permission to use, modify and distribute this software is granted
    81.1 --- a/lemon/lp_base.h	Fri Feb 03 16:11:08 2006 +0000
    81.2 +++ b/lemon/lp_base.h	Fri Feb 03 16:40:16 2006 +0000
    81.3 @@ -1,7 +1,9 @@
    81.4  /* -*- C++ -*-
    81.5 - * lemon/lp_base.h - Part of LEMON, a generic C++ optimization library
    81.6   *
    81.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    81.8 + * This file is a part of LEMON, a generic C++ optimization library
    81.9 + *
   81.10 + * Copyright (C) 2003-2006
   81.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   81.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   81.13   *
   81.14   * Permission to use, modify and distribute this software is granted
    82.1 --- a/lemon/lp_cplex.cc	Fri Feb 03 16:11:08 2006 +0000
    82.2 +++ b/lemon/lp_cplex.cc	Fri Feb 03 16:40:16 2006 +0000
    82.3 @@ -1,7 +1,9 @@
    82.4  /* -*- C++ -*-
    82.5 - * lemon/lp_cplex.cc - Part of LEMON, a generic C++ optimization library
    82.6   *
    82.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    82.8 + * This file is a part of LEMON, a generic C++ optimization library
    82.9 + *
   82.10 + * Copyright (C) 2003-2006
   82.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   82.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   82.13   *
   82.14   * Permission to use, modify and distribute this software is granted
   82.15 @@ -13,6 +15,7 @@
   82.16   * purpose.
   82.17   *
   82.18   */
   82.19 +
   82.20  #include <iostream>
   82.21  #include<lemon/lp_cplex.h>
   82.22  
    83.1 --- a/lemon/lp_cplex.h	Fri Feb 03 16:11:08 2006 +0000
    83.2 +++ b/lemon/lp_cplex.h	Fri Feb 03 16:40:16 2006 +0000
    83.3 @@ -1,7 +1,9 @@
    83.4  /* -*- C++ -*-
    83.5 - * lemon/lp_cplex.h - Part of LEMON, a generic C++ optimization library
    83.6   *
    83.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    83.8 + * This file is a part of LEMON, a generic C++ optimization library
    83.9 + *
   83.10 + * Copyright (C) 2003-2006
   83.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   83.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   83.13   *
   83.14   * Permission to use, modify and distribute this software is granted
    84.1 --- a/lemon/lp_glpk.cc	Fri Feb 03 16:11:08 2006 +0000
    84.2 +++ b/lemon/lp_glpk.cc	Fri Feb 03 16:40:16 2006 +0000
    84.3 @@ -1,7 +1,9 @@
    84.4  /* -*- C++ -*-
    84.5 - * lemon/lp_glpk.cc - Part of LEMON, a generic C++ optimization library
    84.6   *
    84.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    84.8 + * This file is a part of LEMON, a generic C++ optimization library
    84.9 + *
   84.10 + * Copyright (C) 2003-2006
   84.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   84.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   84.13   *
   84.14   * Permission to use, modify and distribute this software is granted
    85.1 --- a/lemon/lp_glpk.h	Fri Feb 03 16:11:08 2006 +0000
    85.2 +++ b/lemon/lp_glpk.h	Fri Feb 03 16:40:16 2006 +0000
    85.3 @@ -1,7 +1,9 @@
    85.4  /* -*- C++ -*-
    85.5 - * lemon/lp_glpk.h - Part of LEMON, a generic C++ optimization library
    85.6   *
    85.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    85.8 + * This file is a part of LEMON, a generic C++ optimization library
    85.9 + *
   85.10 + * Copyright (C) 2003-2006
   85.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   85.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   85.13   *
   85.14   * Permission to use, modify and distribute this software is granted
    86.1 --- a/lemon/lp_skeleton.cc	Fri Feb 03 16:11:08 2006 +0000
    86.2 +++ b/lemon/lp_skeleton.cc	Fri Feb 03 16:40:16 2006 +0000
    86.3 @@ -1,7 +1,9 @@
    86.4  /* -*- C++ -*-
    86.5 - * lemon/lp_skeleton.cc - Part of LEMON, a generic C++ optimization library
    86.6   *
    86.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    86.8 + * This file is a part of LEMON, a generic C++ optimization library
    86.9 + *
   86.10 + * Copyright (C) 2003-2006
   86.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   86.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   86.13   *
   86.14   * Permission to use, modify and distribute this software is granted
    87.1 --- a/lemon/lp_skeleton.h	Fri Feb 03 16:11:08 2006 +0000
    87.2 +++ b/lemon/lp_skeleton.h	Fri Feb 03 16:40:16 2006 +0000
    87.3 @@ -1,7 +1,9 @@
    87.4  /* -*- C++ -*-
    87.5 - * lemon/lp_skeleton.h - Part of LEMON, a generic C++ optimization library
    87.6   *
    87.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    87.8 + * This file is a part of LEMON, a generic C++ optimization library
    87.9 + *
   87.10 + * Copyright (C) 2003-2006
   87.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   87.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   87.13   *
   87.14   * Permission to use, modify and distribute this software is granted
    88.1 --- a/lemon/map_iterator.h	Fri Feb 03 16:11:08 2006 +0000
    88.2 +++ b/lemon/map_iterator.h	Fri Feb 03 16:40:16 2006 +0000
    88.3 @@ -1,7 +1,9 @@
    88.4  /* -*- C++ -*-
    88.5 - * lemon/map_iterator.h - Part of LEMON, a generic C++ optimization library
    88.6   *
    88.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    88.8 + * This file is a part of LEMON, a generic C++ optimization library
    88.9 + *
   88.10 + * Copyright (C) 2003-2006
   88.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   88.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   88.13   *
   88.14   * Permission to use, modify and distribute this software is granted
    89.1 --- a/lemon/maps.h	Fri Feb 03 16:11:08 2006 +0000
    89.2 +++ b/lemon/maps.h	Fri Feb 03 16:40:16 2006 +0000
    89.3 @@ -1,7 +1,9 @@
    89.4  /* -*- C++ -*-
    89.5 - * lemon/maps.h - Part of LEMON, a generic C++ optimization library
    89.6   *
    89.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    89.8 + * This file is a part of LEMON, a generic C++ optimization library
    89.9 + *
   89.10 + * Copyright (C) 2003-2006
   89.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   89.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   89.13   *
   89.14   * Permission to use, modify and distribute this software is granted
    90.1 --- a/lemon/matrix_maps.h	Fri Feb 03 16:11:08 2006 +0000
    90.2 +++ b/lemon/matrix_maps.h	Fri Feb 03 16:40:16 2006 +0000
    90.3 @@ -1,7 +1,9 @@
    90.4  /* -*- C++ -*-
    90.5 - * lemon/matrix_maps.h - Part of LEMON, a generic C++ optimization library
    90.6   *
    90.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    90.8 + * This file is a part of LEMON, a generic C++ optimization library
    90.9 + *
   90.10 + * Copyright (C) 2003-2006
   90.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   90.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   90.13   *
   90.14   * Permission to use, modify and distribute this software is granted
    91.1 --- a/lemon/max_matching.h	Fri Feb 03 16:11:08 2006 +0000
    91.2 +++ b/lemon/max_matching.h	Fri Feb 03 16:40:16 2006 +0000
    91.3 @@ -1,7 +1,9 @@
    91.4  /* -*- C++ -*-
    91.5 - * lemon/max_matching.h - Part of LEMON, a generic C++ optimization library
    91.6   *
    91.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    91.8 + * This file is a part of LEMON, a generic C++ optimization library
    91.9 + *
   91.10 + * Copyright (C) 2003-2006
   91.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   91.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   91.13   *
   91.14   * Permission to use, modify and distribute this software is granted
    92.1 --- a/lemon/min_cost_flow.h	Fri Feb 03 16:11:08 2006 +0000
    92.2 +++ b/lemon/min_cost_flow.h	Fri Feb 03 16:40:16 2006 +0000
    92.3 @@ -1,7 +1,9 @@
    92.4  /* -*- C++ -*-
    92.5 - * lemon/min_cost_flow.h - Part of LEMON, a generic C++ optimization library
    92.6   *
    92.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    92.8 + * This file is a part of LEMON, a generic C++ optimization library
    92.9 + *
   92.10 + * Copyright (C) 2003-2006
   92.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   92.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   92.13   *
   92.14   * Permission to use, modify and distribute this software is granted
    93.1 --- a/lemon/path.h	Fri Feb 03 16:11:08 2006 +0000
    93.2 +++ b/lemon/path.h	Fri Feb 03 16:40:16 2006 +0000
    93.3 @@ -1,7 +1,9 @@
    93.4  /* -*- C++ -*-
    93.5 - * lemon/path.h - Part of LEMON, a generic C++ optimization library
    93.6   *
    93.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    93.8 + * This file is a part of LEMON, a generic C++ optimization library
    93.9 + *
   93.10 + * Copyright (C) 2003-2006
   93.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   93.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   93.13   *
   93.14   * Permission to use, modify and distribute this software is granted
    94.1 --- a/lemon/preflow.h	Fri Feb 03 16:11:08 2006 +0000
    94.2 +++ b/lemon/preflow.h	Fri Feb 03 16:40:16 2006 +0000
    94.3 @@ -1,7 +1,9 @@
    94.4  /* -*- C++ -*-
    94.5 - * lemon/preflow.h - Part of LEMON, a generic C++ optimization library
    94.6   *
    94.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    94.8 + * This file is a part of LEMON, a generic C++ optimization library
    94.9 + *
   94.10 + * Copyright (C) 2003-2006
   94.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   94.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   94.13   *
   94.14   * Permission to use, modify and distribute this software is granted
    95.1 --- a/lemon/prim.h	Fri Feb 03 16:11:08 2006 +0000
    95.2 +++ b/lemon/prim.h	Fri Feb 03 16:40:16 2006 +0000
    95.3 @@ -1,7 +1,9 @@
    95.4  /* -*- C++ -*-
    95.5 - * lemon/prim.h - Part of LEMON, a generic C++ optimization library
    95.6   *
    95.7 - * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    95.8 + * This file is a part of LEMON, a generic C++ optimization library
    95.9 + *
   95.10 + * Copyright (C) 2003-2006
   95.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   95.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   95.13   *
   95.14   * Permission to use, modify and distribute this software is granted
    96.1 --- a/lemon/radix_heap.h	Fri Feb 03 16:11:08 2006 +0000
    96.2 +++ b/lemon/radix_heap.h	Fri Feb 03 16:40:16 2006 +0000
    96.3 @@ -1,7 +1,9 @@
    96.4  /* -*- C++ -*-
    96.5 - * lemon/radix_heap.h - Part of LEMON, a generic C++ optimization library
    96.6   *
    96.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    96.8 + * This file is a part of LEMON, a generic C++ optimization library
    96.9 + *
   96.10 + * Copyright (C) 2003-2006
   96.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   96.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   96.13   *
   96.14   * Permission to use, modify and distribute this software is granted
    97.1 --- a/lemon/radix_sort.h	Fri Feb 03 16:11:08 2006 +0000
    97.2 +++ b/lemon/radix_sort.h	Fri Feb 03 16:40:16 2006 +0000
    97.3 @@ -1,7 +1,9 @@
    97.4  /* -*- C++ -*-
    97.5 - * lemon/radix_sort.h - Part of LEMON, a generic C++ optimization library
    97.6   *
    97.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    97.8 + * This file is a part of LEMON, a generic C++ optimization library
    97.9 + *
   97.10 + * Copyright (C) 2003-2006
   97.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   97.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   97.13   *
   97.14   * Permission to use, modify and distribute this software is granted
    98.1 --- a/lemon/simann.h	Fri Feb 03 16:11:08 2006 +0000
    98.2 +++ b/lemon/simann.h	Fri Feb 03 16:40:16 2006 +0000
    98.3 @@ -1,4 +1,21 @@
    98.4 -// -*- C++ -*-
    98.5 +/* -*- C++ -*-
    98.6 + *
    98.7 + * This file is a part of LEMON, a generic C++ optimization library
    98.8 + *
    98.9 + * Copyright (C) 2003-2006
   98.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   98.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   98.12 + *
   98.13 + * Permission to use, modify and distribute this software is granted
   98.14 + * provided that this copyright notice appears in all copies. For
   98.15 + * precise terms see the accompanying LICENSE file.
   98.16 + *
   98.17 + * This software is provided "AS IS" with no warranty of any kind,
   98.18 + * express or implied, and with no claim as to its suitability for any
   98.19 + * purpose.
   98.20 + *
   98.21 + */
   98.22 +
   98.23  #ifndef LEMON_SIMANN_H
   98.24  #define LEMON_SIMANN_H
   98.25  
    99.1 --- a/lemon/smart_graph.h	Fri Feb 03 16:11:08 2006 +0000
    99.2 +++ b/lemon/smart_graph.h	Fri Feb 03 16:40:16 2006 +0000
    99.3 @@ -1,7 +1,9 @@
    99.4  /* -*- C++ -*-
    99.5 - * lemon/smart_graph.h - Part of LEMON, a generic C++ optimization library
    99.6   *
    99.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    99.8 + * This file is a part of LEMON, a generic C++ optimization library
    99.9 + *
   99.10 + * Copyright (C) 2003-2006
   99.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   99.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   99.13   *
   99.14   * Permission to use, modify and distribute this software is granted
   100.1 --- a/lemon/sub_graph.h	Fri Feb 03 16:11:08 2006 +0000
   100.2 +++ b/lemon/sub_graph.h	Fri Feb 03 16:40:16 2006 +0000
   100.3 @@ -1,7 +1,9 @@
   100.4  /* -*- C++ -*-
   100.5 - * lemon/sub_graph.h - Part of LEMON, a generic C++ optimization library
   100.6   *
   100.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   100.8 + * This file is a part of LEMON, a generic C++ optimization library
   100.9 + *
  100.10 + * Copyright (C) 2003-2006
  100.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  100.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  100.13   *
  100.14   * Permission to use, modify and distribute this software is granted
   101.1 --- a/lemon/suurballe.h	Fri Feb 03 16:11:08 2006 +0000
   101.2 +++ b/lemon/suurballe.h	Fri Feb 03 16:40:16 2006 +0000
   101.3 @@ -1,7 +1,9 @@
   101.4  /* -*- C++ -*-
   101.5 - * lemon/suurballe.h - Part of LEMON, a generic C++ optimization library
   101.6   *
   101.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   101.8 + * This file is a part of LEMON, a generic C++ optimization library
   101.9 + *
  101.10 + * Copyright (C) 2003-2006
  101.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  101.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  101.13   *
  101.14   * Permission to use, modify and distribute this software is granted
   102.1 --- a/lemon/time_measure.h	Fri Feb 03 16:11:08 2006 +0000
   102.2 +++ b/lemon/time_measure.h	Fri Feb 03 16:40:16 2006 +0000
   102.3 @@ -1,7 +1,9 @@
   102.4  /* -*- C++ -*-
   102.5 - * lemon/time_measure.h - Part of LEMON, a generic C++ optimization library
   102.6   *
   102.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   102.8 + * This file is a part of LEMON, a generic C++ optimization library
   102.9 + *
  102.10 + * Copyright (C) 2003-2006
  102.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  102.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  102.13   *
  102.14   * Permission to use, modify and distribute this software is granted
   103.1 --- a/lemon/tolerance.h	Fri Feb 03 16:11:08 2006 +0000
   103.2 +++ b/lemon/tolerance.h	Fri Feb 03 16:40:16 2006 +0000
   103.3 @@ -1,7 +1,9 @@
   103.4  /* -*- C++ -*-
   103.5 - * lemon/tolerance.h - Part of LEMON, a generic C++ optimization library
   103.6   *
   103.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   103.8 + * This file is a part of LEMON, a generic C++ optimization library
   103.9 + *
  103.10 + * Copyright (C) 2003-2006
  103.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  103.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  103.13   *
  103.14   * Permission to use, modify and distribute this software is granted
   104.1 --- a/lemon/topology.h	Fri Feb 03 16:11:08 2006 +0000
   104.2 +++ b/lemon/topology.h	Fri Feb 03 16:40:16 2006 +0000
   104.3 @@ -1,7 +1,9 @@
   104.4  /* -*- C++ -*-
   104.5 - * lemon/topology.h - Part of LEMON, a generic C++ optimization library
   104.6   *
   104.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   104.8 + * This file is a part of LEMON, a generic C++ optimization library
   104.9 + *
  104.10 + * Copyright (C) 2003-2006
  104.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  104.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  104.13   *
  104.14   * Permission to use, modify and distribute this software is granted
   105.1 --- a/lemon/traits.h	Fri Feb 03 16:11:08 2006 +0000
   105.2 +++ b/lemon/traits.h	Fri Feb 03 16:40:16 2006 +0000
   105.3 @@ -1,7 +1,9 @@
   105.4  /* -*- C++ -*-
   105.5 - * lemon/traits.h - Part of LEMON, a generic C++ optimization library
   105.6   *
   105.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   105.8 + * This file is a part of LEMON, a generic C++ optimization library
   105.9 + *
  105.10 + * Copyright (C) 2003-2006
  105.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  105.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  105.13   *
  105.14   * Permission to use, modify and distribute this software is granted
   106.1 --- a/lemon/unionfind.h	Fri Feb 03 16:11:08 2006 +0000
   106.2 +++ b/lemon/unionfind.h	Fri Feb 03 16:40:16 2006 +0000
   106.3 @@ -1,7 +1,9 @@
   106.4  /* -*- C++ -*-
   106.5 - * lemon/unionfind.h - Part of LEMON, a generic C++ optimization library
   106.6   *
   106.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   106.8 + * This file is a part of LEMON, a generic C++ optimization library
   106.9 + *
  106.10 + * Copyright (C) 2003-2006
  106.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  106.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  106.13   *
  106.14   * Permission to use, modify and distribute this software is granted
   107.1 --- a/lemon/utility.h	Fri Feb 03 16:11:08 2006 +0000
   107.2 +++ b/lemon/utility.h	Fri Feb 03 16:40:16 2006 +0000
   107.3 @@ -1,9 +1,10 @@
   107.4  /* -*- C++ -*-
   107.5 - * lemon/utility.h - Part of LEMON, a generic C++ optimization library
   107.6   *
   107.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi
   107.8 - * Kutatocsoport (Egervary Research Group on Combinatorial Optimization,
   107.9 - * EGRES).
  107.10 + * This file is a part of LEMON, a generic C++ optimization library
  107.11 + *
  107.12 + * Copyright (C) 2003-2006
  107.13 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  107.14 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  107.15   *
  107.16   * Permission to use, modify and distribute this software is granted
  107.17   * provided that this copyright notice appears in all copies. For
  107.18 @@ -13,10 +14,11 @@
  107.19   * express or implied, and with no claim as to its suitability for any
  107.20   * purpose.
  107.21   *
  107.22 - * This file contains a modified version of the enable_if library from BOOST.
  107.23 - * See the appropriate copyright notice below.
  107.24   */
  107.25  
  107.26 +// This file contains a modified version of the enable_if library from BOOST.
  107.27 +// See the appropriate copyright notice below.
  107.28 +
  107.29  // Boost enable_if library
  107.30  
  107.31  // Copyright 2003 © The Trustees of Indiana University.
   108.1 --- a/lemon/xy.h	Fri Feb 03 16:11:08 2006 +0000
   108.2 +++ b/lemon/xy.h	Fri Feb 03 16:40:16 2006 +0000
   108.3 @@ -1,7 +1,9 @@
   108.4  /* -*- C++ -*-
   108.5 - * lemon/xy.h - Part of LEMON, a generic C++ optimization library
   108.6   *
   108.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   108.8 + * This file is a part of LEMON, a generic C++ optimization library
   108.9 + *
  108.10 + * Copyright (C) 2003-2006
  108.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  108.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  108.13   *
  108.14   * Permission to use, modify and distribute this software is granted
   109.1 --- a/test/all_pairs_shortest_path_test.cc	Fri Feb 03 16:11:08 2006 +0000
   109.2 +++ b/test/all_pairs_shortest_path_test.cc	Fri Feb 03 16:40:16 2006 +0000
   109.3 @@ -1,3 +1,21 @@
   109.4 +/* -*- C++ -*-
   109.5 + *
   109.6 + * This file is a part of LEMON, a generic C++ optimization library
   109.7 + *
   109.8 + * Copyright (C) 2003-2006
   109.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  109.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  109.11 + *
  109.12 + * Permission to use, modify and distribute this software is granted
  109.13 + * provided that this copyright notice appears in all copies. For
  109.14 + * precise terms see the accompanying LICENSE file.
  109.15 + *
  109.16 + * This software is provided "AS IS" with no warranty of any kind,
  109.17 + * express or implied, and with no claim as to its suitability for any
  109.18 + * purpose.
  109.19 + *
  109.20 + */
  109.21 +
  109.22  #include <iostream>
  109.23  #include <vector>
  109.24  
   110.1 --- a/test/bfs_test.cc	Fri Feb 03 16:11:08 2006 +0000
   110.2 +++ b/test/bfs_test.cc	Fri Feb 03 16:40:16 2006 +0000
   110.3 @@ -1,7 +1,9 @@
   110.4  /* -*- C++ -*-
   110.5 - * test/bfs_test.cc - Part of LEMON, a generic C++ optimization library
   110.6   *
   110.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   110.8 + * This file is a part of LEMON, a generic C++ optimization library
   110.9 + *
  110.10 + * Copyright (C) 2003-2006
  110.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  110.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  110.13   *
  110.14   * Permission to use, modify and distribute this software is granted
   111.1 --- a/test/counter_test.cc	Fri Feb 03 16:11:08 2006 +0000
   111.2 +++ b/test/counter_test.cc	Fri Feb 03 16:40:16 2006 +0000
   111.3 @@ -1,7 +1,9 @@
   111.4  /* -*- C++ -*-
   111.5 - * test/counter_test.cc - Part of LEMON, a generic C++ optimization library
   111.6   *
   111.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   111.8 + * This file is a part of LEMON, a generic C++ optimization library
   111.9 + *
  111.10 + * Copyright (C) 2003-2006
  111.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  111.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  111.13   *
  111.14   * Permission to use, modify and distribute this software is granted
   112.1 --- a/test/dfs_test.cc	Fri Feb 03 16:11:08 2006 +0000
   112.2 +++ b/test/dfs_test.cc	Fri Feb 03 16:40:16 2006 +0000
   112.3 @@ -1,7 +1,9 @@
   112.4  /* -*- C++ -*-
   112.5 - * test/dfs_test.cc - Part of LEMON, a generic C++ optimization library
   112.6   *
   112.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   112.8 + * This file is a part of LEMON, a generic C++ optimization library
   112.9 + *
  112.10 + * Copyright (C) 2003-2006
  112.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  112.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  112.13   *
  112.14   * Permission to use, modify and distribute this software is granted
   113.1 --- a/test/dijkstra_test.cc	Fri Feb 03 16:11:08 2006 +0000
   113.2 +++ b/test/dijkstra_test.cc	Fri Feb 03 16:40:16 2006 +0000
   113.3 @@ -1,7 +1,9 @@
   113.4  /* -*- C++ -*-
   113.5 - * test/dijkstra_test.cc - Part of LEMON, a generic C++ optimization library
   113.6   *
   113.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   113.8 + * This file is a part of LEMON, a generic C++ optimization library
   113.9 + *
  113.10 + * Copyright (C) 2003-2006
  113.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  113.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  113.13   *
  113.14   * Permission to use, modify and distribute this software is granted
   114.1 --- a/test/error_test.cc	Fri Feb 03 16:11:08 2006 +0000
   114.2 +++ b/test/error_test.cc	Fri Feb 03 16:40:16 2006 +0000
   114.3 @@ -1,7 +1,9 @@
   114.4  /* -*- C++ -*-
   114.5 - * test/error_test.cc - Part of LEMON, a generic C++ optimization library
   114.6   *
   114.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   114.8 + * This file is a part of LEMON, a generic C++ optimization library
   114.9 + *
  114.10 + * Copyright (C) 2003-2006
  114.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  114.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  114.13   *
  114.14   * Permission to use, modify and distribute this software is granted
   115.1 --- a/test/graph_adaptor_test.cc	Fri Feb 03 16:11:08 2006 +0000
   115.2 +++ b/test/graph_adaptor_test.cc	Fri Feb 03 16:40:16 2006 +0000
   115.3 @@ -1,7 +1,9 @@
   115.4  /* -*- C++ -*-
   115.5 - * test/graph_adaptor_test.cc - Part of LEMON, a generic C++ optimization library
   115.6   *
   115.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   115.8 + * This file is a part of LEMON, a generic C++ optimization library
   115.9 + *
  115.10 + * Copyright (C) 2003-2006
  115.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  115.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  115.13   *
  115.14   * Permission to use, modify and distribute this software is granted
   116.1 --- a/test/graph_factory_test.cc	Fri Feb 03 16:11:08 2006 +0000
   116.2 +++ b/test/graph_factory_test.cc	Fri Feb 03 16:40:16 2006 +0000
   116.3 @@ -1,7 +1,9 @@
   116.4  /* -*- C++ -*-
   116.5 - * test/graph_test.cc - Part of LEMON, a generic C++ optimization library
   116.6   *
   116.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   116.8 + * This file is a part of LEMON, a generic C++ optimization library
   116.9 + *
  116.10 + * Copyright (C) 2003-2006
  116.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  116.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  116.13   *
  116.14   * Permission to use, modify and distribute this software is granted
   117.1 --- a/test/graph_test.cc	Fri Feb 03 16:11:08 2006 +0000
   117.2 +++ b/test/graph_test.cc	Fri Feb 03 16:40:16 2006 +0000
   117.3 @@ -1,4 +1,20 @@
   117.4 -// -*- c++ -*-
   117.5 +/* -*- C++ -*-
   117.6 + *
   117.7 + * This file is a part of LEMON, a generic C++ optimization library
   117.8 + *
   117.9 + * Copyright (C) 2003-2006
  117.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  117.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  117.12 + *
  117.13 + * Permission to use, modify and distribute this software is granted
  117.14 + * provided that this copyright notice appears in all copies. For
  117.15 + * precise terms see the accompanying LICENSE file.
  117.16 + *
  117.17 + * This software is provided "AS IS" with no warranty of any kind,
  117.18 + * express or implied, and with no claim as to its suitability for any
  117.19 + * purpose.
  117.20 + *
  117.21 + */
  117.22  
  117.23  #include <iostream>
  117.24  #include <vector>
   118.1 --- a/test/graph_test.h	Fri Feb 03 16:11:08 2006 +0000
   118.2 +++ b/test/graph_test.h	Fri Feb 03 16:40:16 2006 +0000
   118.3 @@ -1,7 +1,9 @@
   118.4  /* -*- C++ -*-
   118.5 - * test/graph_test.h - Part of LEMON, a generic C++ optimization library
   118.6   *
   118.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   118.8 + * This file is a part of LEMON, a generic C++ optimization library
   118.9 + *
  118.10 + * Copyright (C) 2003-2006
  118.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  118.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  118.13   *
  118.14   * Permission to use, modify and distribute this software is granted
  118.15 @@ -13,6 +15,7 @@
  118.16   * purpose.
  118.17   *
  118.18   */
  118.19 +
  118.20  #ifndef LEMON_TEST_GRAPH_TEST_H
  118.21  #define LEMON_TEST_GRAPH_TEST_H
  118.22  
   119.1 --- a/test/graph_utils_test.cc	Fri Feb 03 16:11:08 2006 +0000
   119.2 +++ b/test/graph_utils_test.cc	Fri Feb 03 16:40:16 2006 +0000
   119.3 @@ -1,4 +1,20 @@
   119.4 -// -*- c++ -*-
   119.5 +/* -*- C++ -*-
   119.6 + *
   119.7 + * This file is a part of LEMON, a generic C++ optimization library
   119.8 + *
   119.9 + * Copyright (C) 2003-2006
  119.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  119.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  119.12 + *
  119.13 + * Permission to use, modify and distribute this software is granted
  119.14 + * provided that this copyright notice appears in all copies. For
  119.15 + * precise terms see the accompanying LICENSE file.
  119.16 + *
  119.17 + * This software is provided "AS IS" with no warranty of any kind,
  119.18 + * express or implied, and with no claim as to its suitability for any
  119.19 + * purpose.
  119.20 + *
  119.21 + */
  119.22  
  119.23  #include <iostream>
  119.24  #include <vector>
   120.1 --- a/test/graph_utils_test.h	Fri Feb 03 16:11:08 2006 +0000
   120.2 +++ b/test/graph_utils_test.h	Fri Feb 03 16:40:16 2006 +0000
   120.3 @@ -1,7 +1,9 @@
   120.4  /* -*- C++ -*-
   120.5 - * test/graph_utils_test.h - Part of LEMON, a generic C++ optimization library
   120.6   *
   120.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   120.8 + * This file is a part of LEMON, a generic C++ optimization library
   120.9 + *
  120.10 + * Copyright (C) 2003-2006
  120.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  120.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  120.13   *
  120.14   * Permission to use, modify and distribute this software is granted
  120.15 @@ -13,6 +15,7 @@
  120.16   * purpose.
  120.17   *
  120.18   */
  120.19 +
  120.20  #ifndef LEMON_TEST_GRAPH_UTILS_TEST_H
  120.21  #define LEMON_TEST_GRAPH_UTILS_TEST_H
  120.22  
   121.1 --- a/test/heap_test.cc	Fri Feb 03 16:11:08 2006 +0000
   121.2 +++ b/test/heap_test.cc	Fri Feb 03 16:40:16 2006 +0000
   121.3 @@ -1,4 +1,20 @@
   121.4 -// -*- c++ -*-
   121.5 +/* -*- C++ -*-
   121.6 + *
   121.7 + * This file is a part of LEMON, a generic C++ optimization library
   121.8 + *
   121.9 + * Copyright (C) 2003-2006
  121.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  121.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  121.12 + *
  121.13 + * Permission to use, modify and distribute this software is granted
  121.14 + * provided that this copyright notice appears in all copies. For
  121.15 + * precise terms see the accompanying LICENSE file.
  121.16 + *
  121.17 + * This software is provided "AS IS" with no warranty of any kind,
  121.18 + * express or implied, and with no claim as to its suitability for any
  121.19 + * purpose.
  121.20 + *
  121.21 + */
  121.22  
  121.23  #include <iostream>
  121.24  #include <fstream>
   122.1 --- a/test/heap_test.h	Fri Feb 03 16:11:08 2006 +0000
   122.2 +++ b/test/heap_test.h	Fri Feb 03 16:40:16 2006 +0000
   122.3 @@ -1,4 +1,20 @@
   122.4 -// -*- c++ -*-
   122.5 +/* -*- C++ -*-
   122.6 + *
   122.7 + * This file is a part of LEMON, a generic C++ optimization library
   122.8 + *
   122.9 + * Copyright (C) 2003-2006
  122.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  122.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  122.12 + *
  122.13 + * Permission to use, modify and distribute this software is granted
  122.14 + * provided that this copyright notice appears in all copies. For
  122.15 + * precise terms see the accompanying LICENSE file.
  122.16 + *
  122.17 + * This software is provided "AS IS" with no warranty of any kind,
  122.18 + * express or implied, and with no claim as to its suitability for any
  122.19 + * purpose.
  122.20 + *
  122.21 + */
  122.22  
  122.23  #include <vector>
  122.24  #include <algorithm>
   123.1 --- a/test/kruskal_test.cc	Fri Feb 03 16:11:08 2006 +0000
   123.2 +++ b/test/kruskal_test.cc	Fri Feb 03 16:40:16 2006 +0000
   123.3 @@ -1,7 +1,9 @@
   123.4  /* -*- C++ -*-
   123.5 - * test/kruskal_test.cc - Part of LEMON, a generic C++ optimization library
   123.6   *
   123.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   123.8 + * This file is a part of LEMON, a generic C++ optimization library
   123.9 + *
  123.10 + * Copyright (C) 2003-2006
  123.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  123.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  123.13   *
  123.14   * Permission to use, modify and distribute this software is granted
   124.1 --- a/test/lp_test.cc	Fri Feb 03 16:11:08 2006 +0000
   124.2 +++ b/test/lp_test.cc	Fri Feb 03 16:40:16 2006 +0000
   124.3 @@ -1,3 +1,21 @@
   124.4 +/* -*- C++ -*-
   124.5 + *
   124.6 + * This file is a part of LEMON, a generic C++ optimization library
   124.7 + *
   124.8 + * Copyright (C) 2003-2006
   124.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  124.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  124.11 + *
  124.12 + * Permission to use, modify and distribute this software is granted
  124.13 + * provided that this copyright notice appears in all copies. For
  124.14 + * precise terms see the accompanying LICENSE file.
  124.15 + *
  124.16 + * This software is provided "AS IS" with no warranty of any kind,
  124.17 + * express or implied, and with no claim as to its suitability for any
  124.18 + * purpose.
  124.19 + *
  124.20 + */
  124.21 +
  124.22  #include <sstream>
  124.23  #include <lemon/lp_skeleton.h>
  124.24  #include "test_tools.h"
   125.1 --- a/test/map_test.h	Fri Feb 03 16:11:08 2006 +0000
   125.2 +++ b/test/map_test.h	Fri Feb 03 16:40:16 2006 +0000
   125.3 @@ -1,7 +1,9 @@
   125.4  /* -*- C++ -*-
   125.5 - * test/map_test.h - Part of LEMON, a generic C++ optimization library
   125.6   *
   125.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   125.8 + * This file is a part of LEMON, a generic C++ optimization library
   125.9 + *
  125.10 + * Copyright (C) 2003-2006
  125.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  125.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  125.13   *
  125.14   * Permission to use, modify and distribute this software is granted
  125.15 @@ -13,6 +15,7 @@
  125.16   * purpose.
  125.17   *
  125.18   */
  125.19 +
  125.20  #ifndef LEMON_TEST_MAP_TEST_H
  125.21  #define LEMON_TEST_MAP_TEST_H
  125.22  
   126.1 --- a/test/maps_test.cc	Fri Feb 03 16:11:08 2006 +0000
   126.2 +++ b/test/maps_test.cc	Fri Feb 03 16:40:16 2006 +0000
   126.3 @@ -1,3 +1,21 @@
   126.4 +/* -*- C++ -*-
   126.5 + *
   126.6 + * This file is a part of LEMON, a generic C++ optimization library
   126.7 + *
   126.8 + * Copyright (C) 2003-2006
   126.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  126.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  126.11 + *
  126.12 + * Permission to use, modify and distribute this software is granted
  126.13 + * provided that this copyright notice appears in all copies. For
  126.14 + * precise terms see the accompanying LICENSE file.
  126.15 + *
  126.16 + * This software is provided "AS IS" with no warranty of any kind,
  126.17 + * express or implied, and with no claim as to its suitability for any
  126.18 + * purpose.
  126.19 + *
  126.20 + */
  126.21 +
  126.22  #include <lemon/concept_check.h>
  126.23  #include <lemon/concept/maps.h>
  126.24  #include <lemon/maps.h>
   127.1 --- a/test/matrix_maps_test.cc	Fri Feb 03 16:11:08 2006 +0000
   127.2 +++ b/test/matrix_maps_test.cc	Fri Feb 03 16:40:16 2006 +0000
   127.3 @@ -1,4 +1,20 @@
   127.4 -// -*- c++ -*-
   127.5 +/* -*- C++ -*-
   127.6 + *
   127.7 + * This file is a part of LEMON, a generic C++ optimization library
   127.8 + *
   127.9 + * Copyright (C) 2003-2006
  127.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  127.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  127.12 + *
  127.13 + * Permission to use, modify and distribute this software is granted
  127.14 + * provided that this copyright notice appears in all copies. For
  127.15 + * precise terms see the accompanying LICENSE file.
  127.16 + *
  127.17 + * This software is provided "AS IS" with no warranty of any kind,
  127.18 + * express or implied, and with no claim as to its suitability for any
  127.19 + * purpose.
  127.20 + *
  127.21 + */
  127.22  
  127.23  #include <iostream>
  127.24  #include <vector>
   128.1 --- a/test/max_matching_test.cc	Fri Feb 03 16:11:08 2006 +0000
   128.2 +++ b/test/max_matching_test.cc	Fri Feb 03 16:40:16 2006 +0000
   128.3 @@ -1,8 +1,9 @@
   128.4  /* -*- C++ -*-
   128.5 - * test/max_matching_test.cc - 
   128.6 - * Part of LEMON, a generic C++ optimization library
   128.7   *
   128.8 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   128.9 + * This file is a part of LEMON, a generic C++ optimization library
  128.10 + *
  128.11 + * Copyright (C) 2003-2006
  128.12 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  128.13   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  128.14   *
  128.15   * Permission to use, modify and distribute this software is granted
   129.1 --- a/test/min_cost_flow_test.cc	Fri Feb 03 16:11:08 2006 +0000
   129.2 +++ b/test/min_cost_flow_test.cc	Fri Feb 03 16:40:16 2006 +0000
   129.3 @@ -1,7 +1,9 @@
   129.4  /* -*- C++ -*-
   129.5 - * test/min_cost_flow_test.cc - Part of LEMON, a generic C++ optimization library
   129.6   *
   129.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   129.8 + * This file is a part of LEMON, a generic C++ optimization library
   129.9 + *
  129.10 + * Copyright (C) 2003-2006
  129.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  129.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  129.13   *
  129.14   * Permission to use, modify and distribute this software is granted
   130.1 --- a/test/path_test.cc	Fri Feb 03 16:11:08 2006 +0000
   130.2 +++ b/test/path_test.cc	Fri Feb 03 16:40:16 2006 +0000
   130.3 @@ -1,7 +1,9 @@
   130.4  /* -*- C++ -*-
   130.5 - * test/path_test.cc - Part of LEMON, a generic C++ optimization library
   130.6   *
   130.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   130.8 + * This file is a part of LEMON, a generic C++ optimization library
   130.9 + *
  130.10 + * Copyright (C) 2003-2006
  130.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  130.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  130.13   *
  130.14   * Permission to use, modify and distribute this software is granted
   131.1 --- a/test/preflow_test.cc	Fri Feb 03 16:11:08 2006 +0000
   131.2 +++ b/test/preflow_test.cc	Fri Feb 03 16:40:16 2006 +0000
   131.3 @@ -1,7 +1,9 @@
   131.4  /* -*- C++ -*-
   131.5 - * test/preflow_test.cc - Part of LEMON, a generic C++ optimization library
   131.6   *
   131.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   131.8 + * This file is a part of LEMON, a generic C++ optimization library
   131.9 + *
  131.10 + * Copyright (C) 2003-2006
  131.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  131.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  131.13   *
  131.14   * Permission to use, modify and distribute this software is granted
   132.1 --- a/test/radix_sort_test.cc	Fri Feb 03 16:11:08 2006 +0000
   132.2 +++ b/test/radix_sort_test.cc	Fri Feb 03 16:40:16 2006 +0000
   132.3 @@ -1,3 +1,21 @@
   132.4 +/* -*- C++ -*-
   132.5 + *
   132.6 + * This file is a part of LEMON, a generic C++ optimization library
   132.7 + *
   132.8 + * Copyright (C) 2003-2006
   132.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  132.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  132.11 + *
  132.12 + * Permission to use, modify and distribute this software is granted
  132.13 + * provided that this copyright notice appears in all copies. For
  132.14 + * precise terms see the accompanying LICENSE file.
  132.15 + *
  132.16 + * This software is provided "AS IS" with no warranty of any kind,
  132.17 + * express or implied, and with no claim as to its suitability for any
  132.18 + * purpose.
  132.19 + *
  132.20 + */
  132.21 +
  132.22  #include <lemon/time_measure.h>
  132.23  #include <lemon/smart_graph.h>
  132.24  #include <lemon/graph_utils.h>
   133.1 --- a/test/simann_test.cc	Fri Feb 03 16:11:08 2006 +0000
   133.2 +++ b/test/simann_test.cc	Fri Feb 03 16:40:16 2006 +0000
   133.3 @@ -1,3 +1,21 @@
   133.4 +/* -*- C++ -*-
   133.5 + *
   133.6 + * This file is a part of LEMON, a generic C++ optimization library
   133.7 + *
   133.8 + * Copyright (C) 2003-2006
   133.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  133.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  133.11 + *
  133.12 + * Permission to use, modify and distribute this software is granted
  133.13 + * provided that this copyright notice appears in all copies. For
  133.14 + * precise terms see the accompanying LICENSE file.
  133.15 + *
  133.16 + * This software is provided "AS IS" with no warranty of any kind,
  133.17 + * express or implied, and with no claim as to its suitability for any
  133.18 + * purpose.
  133.19 + *
  133.20 + */
  133.21 +
  133.22  #include <lemon/simann.h>
  133.23  
  133.24  using namespace lemon;
   134.1 --- a/test/suurballe_test.cc	Fri Feb 03 16:11:08 2006 +0000
   134.2 +++ b/test/suurballe_test.cc	Fri Feb 03 16:40:16 2006 +0000
   134.3 @@ -1,7 +1,9 @@
   134.4  /* -*- C++ -*-
   134.5 - * test/suurballe_test.cc - Part of LEMON, a generic C++ optimization library
   134.6   *
   134.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   134.8 + * This file is a part of LEMON, a generic C++ optimization library
   134.9 + *
  134.10 + * Copyright (C) 2003-2006
  134.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  134.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  134.13   *
  134.14   * Permission to use, modify and distribute this software is granted
   135.1 --- a/test/test_tools.h	Fri Feb 03 16:11:08 2006 +0000
   135.2 +++ b/test/test_tools.h	Fri Feb 03 16:40:16 2006 +0000
   135.3 @@ -1,7 +1,9 @@
   135.4  /* -*- C++ -*-
   135.5 - * test/test_tools.h - Part of LEMON, a generic C++ optimization library
   135.6   *
   135.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   135.8 + * This file is a part of LEMON, a generic C++ optimization library
   135.9 + *
  135.10 + * Copyright (C) 2003-2006
  135.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  135.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  135.13   *
  135.14   * Permission to use, modify and distribute this software is granted
   136.1 --- a/test/test_tools_fail.cc	Fri Feb 03 16:11:08 2006 +0000
   136.2 +++ b/test/test_tools_fail.cc	Fri Feb 03 16:40:16 2006 +0000
   136.3 @@ -1,7 +1,9 @@
   136.4  /* -*- C++ -*-
   136.5 - * test/test_tools_fail.cc - Part of LEMON, a generic C++ optimization library
   136.6   *
   136.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   136.8 + * This file is a part of LEMON, a generic C++ optimization library
   136.9 + *
  136.10 + * Copyright (C) 2003-2006
  136.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  136.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  136.13   *
  136.14   * Permission to use, modify and distribute this software is granted
   137.1 --- a/test/test_tools_pass.cc	Fri Feb 03 16:11:08 2006 +0000
   137.2 +++ b/test/test_tools_pass.cc	Fri Feb 03 16:40:16 2006 +0000
   137.3 @@ -1,7 +1,9 @@
   137.4  /* -*- C++ -*-
   137.5 - * test/test_tools_pass.cc - Part of LEMON, a generic C++ optimization library
   137.6   *
   137.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   137.8 + * This file is a part of LEMON, a generic C++ optimization library
   137.9 + *
  137.10 + * Copyright (C) 2003-2006
  137.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  137.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  137.13   *
  137.14   * Permission to use, modify and distribute this software is granted
   138.1 --- a/test/time_measure_test.cc	Fri Feb 03 16:11:08 2006 +0000
   138.2 +++ b/test/time_measure_test.cc	Fri Feb 03 16:40:16 2006 +0000
   138.3 @@ -1,7 +1,9 @@
   138.4  /* -*- C++ -*-
   138.5 - * test/time_measure_test.cc - Part of LEMON, a generic C++ optimization library
   138.6   *
   138.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   138.8 + * This file is a part of LEMON, a generic C++ optimization library
   138.9 + *
  138.10 + * Copyright (C) 2003-2006
  138.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  138.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  138.13   *
  138.14   * Permission to use, modify and distribute this software is granted
   139.1 --- a/test/ugraph_test.cc	Fri Feb 03 16:11:08 2006 +0000
   139.2 +++ b/test/ugraph_test.cc	Fri Feb 03 16:40:16 2006 +0000
   139.3 @@ -1,4 +1,20 @@
   139.4 -// -*- C++ -*-
   139.5 +/* -*- C++ -*-
   139.6 + *
   139.7 + * This file is a part of LEMON, a generic C++ optimization library
   139.8 + *
   139.9 + * Copyright (C) 2003-2006
  139.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  139.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
  139.12 + *
  139.13 + * Permission to use, modify and distribute this software is granted
  139.14 + * provided that this copyright notice appears in all copies. For
  139.15 + * precise terms see the accompanying LICENSE file.
  139.16 + *
  139.17 + * This software is provided "AS IS" with no warranty of any kind,
  139.18 + * express or implied, and with no claim as to its suitability for any
  139.19 + * purpose.
  139.20 + *
  139.21 + */
  139.22  
  139.23  #include <lemon/bits/graph_extender.h>
  139.24  #include <lemon/concept/ugraph.h>
   140.1 --- a/test/unionfind_test.cc	Fri Feb 03 16:11:08 2006 +0000
   140.2 +++ b/test/unionfind_test.cc	Fri Feb 03 16:40:16 2006 +0000
   140.3 @@ -1,7 +1,9 @@
   140.4  /* -*- C++ -*-
   140.5 - * test/unionfind_test.cc - Part of LEMON, a generic C++ optimization library
   140.6   *
   140.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   140.8 + * This file is a part of LEMON, a generic C++ optimization library
   140.9 + *
  140.10 + * Copyright (C) 2003-2006
  140.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  140.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  140.13   *
  140.14   * Permission to use, modify and distribute this software is granted
   141.1 --- a/test/xy_test.cc	Fri Feb 03 16:11:08 2006 +0000
   141.2 +++ b/test/xy_test.cc	Fri Feb 03 16:40:16 2006 +0000
   141.3 @@ -1,7 +1,9 @@
   141.4  /* -*- C++ -*-
   141.5 - * test/xy_test.cc - Part of LEMON, a generic C++ optimization library
   141.6   *
   141.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   141.8 + * This file is a part of LEMON, a generic C++ optimization library
   141.9 + *
  141.10 + * Copyright (C) 2003-2006
  141.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  141.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
  141.13   *
  141.14   * Permission to use, modify and distribute this software is granted