[Lemon-commits] [lemon_svn] ladanyi: r2146 - hugo/trunk/demo

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:50:30 CET 2006


Author: ladanyi
Date: Wed Aug 17 17:26:00 2005
New Revision: 2146

Modified:
   hugo/trunk/demo/coloring.cc
   hugo/trunk/demo/descriptor_map_demo.cc
   hugo/trunk/demo/dijkstra_demo.cc
   hugo/trunk/demo/dim_to_dot.cc
   hugo/trunk/demo/hello_lemon.cc
   hugo/trunk/demo/lp_demo.cc
   hugo/trunk/demo/min_route.cc
   hugo/trunk/demo/reader_writer_demo.cc
   hugo/trunk/demo/sub_graph_adaptor_demo.cc

Log:
Added missing copyright headers, and corrected the file names in some of them.

Modified: hugo/trunk/demo/coloring.cc
==============================================================================
--- hugo/trunk/demo/coloring.cc	(original)
+++ hugo/trunk/demo/coloring.cc	Wed Aug 17 17:26:00 2005
@@ -1,3 +1,19 @@
+/* -*- C++ -*-
+ * demo/coloring.cc - Part of LEMON, a generic C++ optimization library
+ *
+ * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
+ * (Egervary Research Group on Combinatorial Optimization, EGRES).
+ *
+ * Permission to use, modify and distribute this software is granted
+ * provided that this copyright notice appears in all copies. For
+ * precise terms see the accompanying LICENSE file.
+ *
+ * This software is provided "AS IS" with no warranty of any kind,
+ * express or implied, and with no claim as to its suitability for any
+ * purpose.
+ *
+ */
+
 #include <vector>
 
 #include <lemon/smart_graph.h>

Modified: hugo/trunk/demo/descriptor_map_demo.cc
==============================================================================
--- hugo/trunk/demo/descriptor_map_demo.cc	(original)
+++ hugo/trunk/demo/descriptor_map_demo.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,6 @@
 /* -*- C++ -*-
- * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization library
+ * demo/descriptor_map_demo.cc - Part of LEMON, a generic C++ optimization
+ * library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).

Modified: hugo/trunk/demo/dijkstra_demo.cc
==============================================================================
--- hugo/trunk/demo/dijkstra_demo.cc	(original)
+++ hugo/trunk/demo/dijkstra_demo.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,5 @@
 /* -*- C++ -*-
- * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
+ * demo/dijkstra_demo.cc - Part of LEMON, a generic C++ optimization library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).

Modified: hugo/trunk/demo/dim_to_dot.cc
==============================================================================
--- hugo/trunk/demo/dim_to_dot.cc	(original)
+++ hugo/trunk/demo/dim_to_dot.cc	Wed Aug 17 17:26:00 2005
@@ -1,4 +1,18 @@
-// -*- c++ -*-
+/* -*- C++ -*-
+ * demo/dim_to_dot.cc - Part of LEMON, a generic C++ optimization library
+ *
+ * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
+ * (Egervary Research Group on Combinatorial Optimization, EGRES).
+ *
+ * Permission to use, modify and distribute this software is granted
+ * provided that this copyright notice appears in all copies. For
+ * precise terms see the accompanying LICENSE file.
+ *
+ * This software is provided "AS IS" with no warranty of any kind,
+ * express or implied, and with no claim as to its suitability for any
+ * purpose.
+ *
+ */
 
 // Use a DIMACS max flow file as stdin.
 // dim_to_dot < dimacs_max_flow_file > dot_output_file

Modified: hugo/trunk/demo/hello_lemon.cc
==============================================================================
--- hugo/trunk/demo/hello_lemon.cc	(original)
+++ hugo/trunk/demo/hello_lemon.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,5 @@
 /* -*- C++ -*-
- * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
+ * demo/hello_lemon.cc - Part of LEMON, a generic C++ optimization library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).

Modified: hugo/trunk/demo/lp_demo.cc
==============================================================================
--- hugo/trunk/demo/lp_demo.cc	(original)
+++ hugo/trunk/demo/lp_demo.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,5 @@
 /* -*- C++ -*-
- * demo/graph_to_eps.cc - Part of LEMON, a generic C++ optimization library
+ * demo/lp_demo.cc - Part of LEMON, a generic C++ optimization library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).

Modified: hugo/trunk/demo/min_route.cc
==============================================================================
--- hugo/trunk/demo/min_route.cc	(original)
+++ hugo/trunk/demo/min_route.cc	Wed Aug 17 17:26:00 2005
@@ -1,3 +1,19 @@
+/* -*- C++ -*-
+ * demo/min_route.cc - Part of LEMON, a generic C++ optimization library
+ *
+ * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
+ * (Egervary Research Group on Combinatorial Optimization, EGRES).
+ *
+ * Permission to use, modify and distribute this software is granted
+ * provided that this copyright notice appears in all copies. For
+ * precise terms see the accompanying LICENSE file.
+ *
+ * This software is provided "AS IS" with no warranty of any kind,
+ * express or implied, and with no claim as to its suitability for any
+ * purpose.
+ *
+ */
+
 #include <iostream>
 #include <fstream>
 

Modified: hugo/trunk/demo/reader_writer_demo.cc
==============================================================================
--- hugo/trunk/demo/reader_writer_demo.cc	(original)
+++ hugo/trunk/demo/reader_writer_demo.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,6 @@
 /* -*- C++ -*-
- * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
+ * demo/reader_writer_demo.cc - Part of LEMON, a generic C++ optimization
+ * library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).

Modified: hugo/trunk/demo/sub_graph_adaptor_demo.cc
==============================================================================
--- hugo/trunk/demo/sub_graph_adaptor_demo.cc	(original)
+++ hugo/trunk/demo/sub_graph_adaptor_demo.cc	Wed Aug 17 17:26:00 2005
@@ -1,5 +1,6 @@
 /* -*- C++ -*-
- * demo/lp_maxflow_demo.cc - Part of LEMON, a generic C++ optimization library
+ * demo/sub_graph_adaptor_demo.cc - Part of LEMON, a generic C++ optimization
+ * library
  *
  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  * (Egervary Research Group on Combinatorial Optimization, EGRES).



More information about the Lemon-commits mailing list