Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75583 - trunk/libs/numeric/ublas/test
From: david.bellot_at_[hidden]
Date: 2011-11-20 19:38:31


Author: david.bellot
Date: 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
New Revision: 75583
URL: http://svn.boost.org/trac/boost/changeset/75583

Log:
added licenses where boost.inspect said they were missing

Text files modified:
   trunk/libs/numeric/ublas/test/begin_end.cpp | 6 +++++-
   trunk/libs/numeric/ublas/test/comp_mat_erase.cpp | 6 ++++++
   trunk/libs/numeric/ublas/test/num_columns.cpp | 6 +++++-
   trunk/libs/numeric/ublas/test/num_rows.cpp | 6 +++++-
   trunk/libs/numeric/ublas/test/size.cpp | 6 +++++-
   trunk/libs/numeric/ublas/test/sparse_view_test.cpp | 11 +++++------
   trunk/libs/numeric/ublas/test/test11.cpp | 2 --
   trunk/libs/numeric/ublas/test/test_coordinate_matrix_sort.cpp | 6 ++++++
   trunk/libs/numeric/ublas/test/utils.hpp | 6 +++++-
   9 files changed, 42 insertions(+), 13 deletions(-)

Modified: trunk/libs/numeric/ublas/test/begin_end.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/begin_end.cpp (original)
+++ trunk/libs/numeric/ublas/test/begin_end.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,8 @@
-/** -*- c++ -*- \file begin_end.hpp \brief Test the \c begin and \c end operations. */
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 #include <cmath>
 #include <boost/numeric/ublas/traits/const_iterator_type.hpp>

Modified: trunk/libs/numeric/ublas/test/comp_mat_erase.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/comp_mat_erase.cpp (original)
+++ trunk/libs/numeric/ublas/test/comp_mat_erase.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,3 +1,9 @@
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
 #include "boost/numeric/ublas/matrix_sparse.hpp"
 
 #define BOOST_TEST_MODULE SparseMatrixErasureTest

Modified: trunk/libs/numeric/ublas/test/num_columns.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/num_columns.cpp (original)
+++ trunk/libs/numeric/ublas/test/num_columns.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,8 @@
-/** -*- c++ -*- \file num_columns.cpp \breif Test for the \c num_columns operation. */
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 #include <boost/numeric/ublas/fwd.hpp>
 #include <boost/numeric/ublas/matrix.hpp>

Modified: trunk/libs/numeric/ublas/test/num_rows.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/num_rows.cpp (original)
+++ trunk/libs/numeric/ublas/test/num_rows.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,8 @@
-/** -*- c++ -*- \file num_rows.hpp \file Test the \c num_rows operation. */
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 #include <boost/numeric/ublas/fwd.hpp>
 #include <boost/numeric/ublas/matrix.hpp>

Modified: trunk/libs/numeric/ublas/test/size.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/size.cpp (original)
+++ trunk/libs/numeric/ublas/test/size.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,8 @@
-/** -*- c++ -*- \file size.hpp \brief Test the \c size operation. */
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 #include <boost/numeric/ublas/fwd.hpp>
 #include <boost/numeric/ublas/matrix.hpp>

Modified: trunk/libs/numeric/ublas/test/sparse_view_test.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/sparse_view_test.cpp (original)
+++ trunk/libs/numeric/ublas/test/sparse_view_test.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,9 +1,8 @@
-
-/* Test program to test find functions of triagular matrices
- *
- * author: Gunter Winkler ( guwi17 at gmx dot de )
- */
-
+// Copyright (c) 2009-2011 Gunter Winkler, David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 // ublas headers
 

Modified: trunk/libs/numeric/ublas/test/test11.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/test11.cpp (original)
+++ trunk/libs/numeric/ublas/test/test11.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,3 @@
-//
 // Copyright (c) 2000-2002
 // Joerg Walter, Mathias Koch
 //
@@ -8,7 +7,6 @@
 //
 // The authors gratefully acknowledge the support of
 // GeNeSys mbH & Co. KG in producing this work.
-//
 
 #include "test1.hpp"
 

Modified: trunk/libs/numeric/ublas/test/test_coordinate_matrix_sort.cpp
==============================================================================
--- trunk/libs/numeric/ublas/test/test_coordinate_matrix_sort.cpp (original)
+++ trunk/libs/numeric/ublas/test/test_coordinate_matrix_sort.cpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,3 +1,9 @@
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
 #ifndef BOOST_UBLAS_NO_ELEMENT_PROXIES
 # define BOOST_UBLAS_NO_ELEMENT_PROXIES
 #endif

Modified: trunk/libs/numeric/ublas/test/utils.hpp
==============================================================================
--- trunk/libs/numeric/ublas/test/utils.hpp (original)
+++ trunk/libs/numeric/ublas/test/utils.hpp 2011-11-20 19:38:29 EST (Sun, 20 Nov 2011)
@@ -1,4 +1,8 @@
-/** -*- c++ -*- \file utils.hpp \brief Test utilities. */
+// Copyright (c) 2011 David Bellot
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 #ifndef TEST_UTILS_HPP
 #define TEST_UTILS_HPP


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk