From 7e2f9e06f675677f2f50ba4b45f87398d980eb77 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Mon, 14 Mar 2005 13:28:59 +0000 Subject: [PATCH] Update doc matches name change sparse_ to mapped_ svn path=/trunk/boost/libs/numeric/ublas/; revision=27642 --- doc/container.htm | 4 ++-- doc/samples/Jamfile | 8 ++++---- doc/samples/Jamfile.v2 | 8 ++++---- doc/samples/sparse_matrix.cpp | 2 +- doc/samples/sparse_vector.cpp | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/container.htm b/doc/container.htm index 20774bd0..fab3a79f 100644 --- a/doc/container.htm +++ b/doc/container.htm @@ -166,7 +166,7 @@ size.

Matrix

Description

@@ -331,7 +331,7 @@ size.

  • matrix<T> , bounded_matrix<T, M, N>
  • identity_matrix<T> , zero_matrix<T> , scalar_matrix<T>
  • triangular_matrix<T> , symmetric_matrix<T> , banded_matrix<T>
  • -
  • sparse_matrix<T> , compressed_matrix , coordinate_matrix
  • +
  • mapped_matrix<T> , compressed_matrix , coordinate_matrix

  • Copyright (©) 2000-2002 Joerg Walter, Mathias Koch
    diff --git a/doc/samples/Jamfile b/doc/samples/Jamfile index 5f08fe51..7da70284 100644 --- a/doc/samples/Jamfile +++ b/doc/samples/Jamfile @@ -80,8 +80,8 @@ exe zero_vector <*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092" ; -exe sparse_vector - : sparse_vector.cpp +exe mapped_vector + : mapped_vector.cpp : $(BOOST_ROOT) $(BOOST_ROOT) <*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092" @@ -208,8 +208,8 @@ exe zero_matrix <*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092" ; -exe sparse_matrix - : sparse_matrix.cpp +exe mapped_matrix + : mapped_matrix.cpp : $(BOOST_ROOT) $(BOOST_ROOT) <*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092" diff --git a/doc/samples/Jamfile.v2 b/doc/samples/Jamfile.v2 index d9c142c5..d32c8742 100644 --- a/doc/samples/Jamfile.v2 +++ b/doc/samples/Jamfile.v2 @@ -46,8 +46,8 @@ exe zero_vector : zero_vector.cpp ; -exe sparse_vector - : sparse_vector.cpp +exe mapped_vector + : mapped_vector.cpp ; exe compressed_vector @@ -110,8 +110,8 @@ exe zero_matrix : zero_matrix.cpp ; -exe sparse_matrix - : sparse_matrix.cpp +exe mapped_matrix + : mapped_matrix.cpp ; exe compressed_matrix diff --git a/doc/samples/sparse_matrix.cpp b/doc/samples/sparse_matrix.cpp index 84d4fc6b..75a9887b 100644 --- a/doc/samples/sparse_matrix.cpp +++ b/doc/samples/sparse_matrix.cpp @@ -19,7 +19,7 @@ int main () { using namespace boost::numeric::ublas; - sparse_matrix m (3, 3, 3 * 3); + mapped_matrix m (3, 3, 3 * 3); for (unsigned i = 0; i < m.size1 (); ++ i) for (unsigned j = 0; j < m.size2 (); ++ j) m (i, j) = 3 * i + j; diff --git a/doc/samples/sparse_vector.cpp b/doc/samples/sparse_vector.cpp index f130d5bd..4e65196a 100644 --- a/doc/samples/sparse_vector.cpp +++ b/doc/samples/sparse_vector.cpp @@ -19,7 +19,7 @@ int main () { using namespace boost::numeric::ublas; - sparse_vector v (3, 3); + mapped_vector v (3, 3); for (unsigned i = 0; i < v.size (); ++ i) v (i) = i; std::cout << v << std::endl;