Added missing copyright headers, and corrected the file names in some of them.
authorladanyi
Wed, 17 Aug 2005 15:26:00 +0000
changeset 1636260ac104190f
parent 1635 1d2e5352e99b
child 1637 9d64d5672b88
Added missing copyright headers, and corrected the file names in some of them.
demo/coloring.cc
demo/descriptor_map_demo.cc
demo/dijkstra_demo.cc
demo/dim_to_dot.cc
demo/hello_lemon.cc
demo/lp_demo.cc
demo/min_route.cc
demo/reader_writer_demo.cc
demo/sub_graph_adaptor_demo.cc
     1.1 --- a/demo/coloring.cc	Wed Aug 17 15:20:18 2005 +0000
     1.2 +++ b/demo/coloring.cc	Wed Aug 17 15:26:00 2005 +0000
     1.3 @@ -1,3 +1,19 @@
     1.4 +/* -*- C++ -*-
     1.5 + * demo/coloring.cc - Part of LEMON, a generic C++ optimization library
     1.6 + *
     1.7 + * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     1.8 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
     1.9 + *
    1.10 + * Permission to use, modify and distribute this software is granted
    1.11 + * provided that this copyright notice appears in all copies. For
    1.12 + * precise terms see the accompanying LICENSE file.
    1.13 + *
    1.14 + * This software is provided "AS IS" with no warranty of any kind,
    1.15 + * express or implied, and with no claim as to its suitability for any
    1.16 + * purpose.
    1.17 + *
    1.18 + */
    1.19 +
    1.20  #include <vector>
    1.21  
    1.22  #include <lemon/smart_graph.h>
     2.1 --- a/demo/descriptor_map_demo.cc	Wed Aug 17 15:20:18 2005 +0000
     2.2 +++ b/demo/descriptor_map_demo.cc	Wed Aug 17 15:26:00 2005 +0000
     2.3 @@ -1,5 +1,6 @@
     2.4  /* -*- C++ -*-
     2.5 - * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization library
     2.6 + * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization
     2.7 + * library
     2.8   *
     2.9   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    2.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
     3.1 --- a/demo/dijkstra_demo.cc	Wed Aug 17 15:20:18 2005 +0000
     3.2 +++ b/demo/dijkstra_demo.cc	Wed Aug 17 15:26:00 2005 +0000
     3.3 @@ -1,5 +1,5 @@
     3.4  /* -*- C++ -*-
     3.5 - * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
     3.6 + * demo/dijkstra_demo.cc - Part of LEMON, a generic C++ optimization library
     3.7   *
     3.8   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     3.9   * (Egervary Research Group on Combinatorial Optimization, EGRES).
     4.1 --- a/demo/dim_to_dot.cc	Wed Aug 17 15:20:18 2005 +0000
     4.2 +++ b/demo/dim_to_dot.cc	Wed Aug 17 15:26:00 2005 +0000
     4.3 @@ -1,4 +1,18 @@
     4.4 -// -*- c++ -*-
     4.5 +/* -*- C++ -*-
     4.6 + * demo/dim_to_dot.cc - Part of LEMON, a generic C++ optimization library
     4.7 + *
     4.8 + * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     4.9 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    4.10 + *
    4.11 + * Permission to use, modify and distribute this software is granted
    4.12 + * provided that this copyright notice appears in all copies. For
    4.13 + * precise terms see the accompanying LICENSE file.
    4.14 + *
    4.15 + * This software is provided "AS IS" with no warranty of any kind,
    4.16 + * express or implied, and with no claim as to its suitability for any
    4.17 + * purpose.
    4.18 + *
    4.19 + */
    4.20  
    4.21  // Use a DIMACS max flow file as stdin.
    4.22  // dim_to_dot < dimacs_max_flow_file > dot_output_file
     5.1 --- a/demo/hello_lemon.cc	Wed Aug 17 15:20:18 2005 +0000
     5.2 +++ b/demo/hello_lemon.cc	Wed Aug 17 15:26:00 2005 +0000
     5.3 @@ -1,5 +1,5 @@
     5.4  /* -*- C++ -*-
     5.5 - * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
     5.6 + * demo/hello_lemon.cc - Part of LEMON, a generic C++ optimization library
     5.7   *
     5.8   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     5.9   * (Egervary Research Group on Combinatorial Optimization, EGRES).
     6.1 --- a/demo/lp_demo.cc	Wed Aug 17 15:20:18 2005 +0000
     6.2 +++ b/demo/lp_demo.cc	Wed Aug 17 15:26:00 2005 +0000
     6.3 @@ -1,5 +1,5 @@
     6.4  /* -*- C++ -*-
     6.5 - * demo/graph_to_eps.cc - Part of LEMON, a generic C++ optimization library
     6.6 + * demo/lp_demo.cc - Part of LEMON, a generic C++ optimization library
     6.7   *
     6.8   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     6.9   * (Egervary Research Group on Combinatorial Optimization, EGRES).
     7.1 --- a/demo/min_route.cc	Wed Aug 17 15:20:18 2005 +0000
     7.2 +++ b/demo/min_route.cc	Wed Aug 17 15:26:00 2005 +0000
     7.3 @@ -1,3 +1,19 @@
     7.4 +/* -*- C++ -*-
     7.5 + * demo/min_route.cc - Part of LEMON, a generic C++ optimization library
     7.6 + *
     7.7 + * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7.8 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
     7.9 + *
    7.10 + * Permission to use, modify and distribute this software is granted
    7.11 + * provided that this copyright notice appears in all copies. For
    7.12 + * precise terms see the accompanying LICENSE file.
    7.13 + *
    7.14 + * This software is provided "AS IS" with no warranty of any kind,
    7.15 + * express or implied, and with no claim as to its suitability for any
    7.16 + * purpose.
    7.17 + *
    7.18 + */
    7.19 +
    7.20  #include <iostream>
    7.21  #include <fstream>
    7.22  
     8.1 --- a/demo/reader_writer_demo.cc	Wed Aug 17 15:20:18 2005 +0000
     8.2 +++ b/demo/reader_writer_demo.cc	Wed Aug 17 15:26:00 2005 +0000
     8.3 @@ -1,5 +1,6 @@
     8.4  /* -*- C++ -*-
     8.5 - * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
     8.6 + * demo/reader_writer_demo.cc - Part of LEMON, a generic C++ optimization
     8.7 + * library
     8.8   *
     8.9   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    8.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
     9.1 --- a/demo/sub_graph_adaptor_demo.cc	Wed Aug 17 15:20:18 2005 +0000
     9.2 +++ b/demo/sub_graph_adaptor_demo.cc	Wed Aug 17 15:26:00 2005 +0000
     9.3 @@ -1,5 +1,6 @@
     9.4  /* -*- C++ -*-
     9.5 - * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
     9.6 + * demo/sub_graph_adaptor_demo.cc - Part of LEMON, a generic C++ optimization
     9.7 + * library
     9.8   *
     9.9   * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    9.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).