From afce1c103c4c2bbca00ab2149f7d81251e7fe67f Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 13 Jul 2005 16:28:22 +0000 Subject: [PATCH] Untabification [SVN r30057] --- include/boost/numeric/ublas/banded.hpp | 2 +- include/boost/numeric/ublas/detail/concepts.hpp | 14 +++++++------- include/boost/numeric/ublas/expression_types.hpp | 4 ++-- include/boost/numeric/ublas/traits.hpp | 10 +++++----- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/include/boost/numeric/ublas/banded.hpp b/include/boost/numeric/ublas/banded.hpp index 735caade..3cd267e1 100644 --- a/include/boost/numeric/ublas/banded.hpp +++ b/include/boost/numeric/ublas/banded.hpp @@ -973,7 +973,7 @@ namespace boost { namespace numeric { namespace ublas { matrix_type (size, size) {} BOOST_UBLAS_INLINE diagonal_matrix (size_type size, const array_type& data): - matrix_type (size, size, 0, 0, data) {} + matrix_type (size, size, 0, 0, data) {} BOOST_UBLAS_INLINE diagonal_matrix (size_type size1, size_type size2): matrix_type (size1, size2) {} diff --git a/include/boost/numeric/ublas/detail/concepts.hpp b/include/boost/numeric/ublas/detail/concepts.hpp index 5ddbeed7..93c3959c 100644 --- a/include/boost/numeric/ublas/detail/concepts.hpp +++ b/include/boost/numeric/ublas/detail/concepts.hpp @@ -524,7 +524,7 @@ namespace boost { namespace numeric { namespace ublas { typedef typename SE::value_type value_type; static void constraints () { - scalar_expression_type *sp; + scalar_expression_type *sp; scalar_expression_type s = *sp; value_type t; // Conversion @@ -543,8 +543,8 @@ namespace boost { namespace numeric { namespace ublas { typedef typename VE::const_reverse_iterator const_reverse_iterator_type; static void constraints () { - vector_expression_type *vp; - const vector_expression_type *cvp; + vector_expression_type *vp; + const vector_expression_type *cvp; vector_expression_type v = *vp; const vector_expression_type cv = *cvp; size_type n (0), i (0); @@ -582,7 +582,7 @@ namespace boost { namespace numeric { namespace ublas { typedef typename VE::reverse_iterator reverse_iterator_type; static void constraints () { - vector_expression_type *vp; + vector_expression_type *vp; AssignableConcept::constraints (*vp); VectorExpressionConcept::constraints (); vector_expression_type v = *vp, v1 = *vp, v2 = *vp; @@ -628,8 +628,8 @@ namespace boost { namespace numeric { namespace ublas { typedef typename ME::const_reverse_iterator2 const_reverse_subiterator2_type; static void constraints () { - matrix_expression_type *mp; - const matrix_expression_type *cmp; + matrix_expression_type *mp; + const matrix_expression_type *cmp; matrix_expression_type m = *mp; const matrix_expression_type cm = *cmp; size_type n (0), i (0), j (0); @@ -680,7 +680,7 @@ namespace boost { namespace numeric { namespace ublas { typedef typename ME::reverse_iterator2 reverse_subiterator2_type; static void constraints () { - matrix_expression_type *mp; + matrix_expression_type *mp; AssignableConcept::constraints (*mp); MatrixExpressionConcept::constraints (); matrix_expression_type m = *mp, m1 = *mp, m2 = *mp; diff --git a/include/boost/numeric/ublas/expression_types.hpp b/include/boost/numeric/ublas/expression_types.hpp index 6f90b657..ba6da255 100644 --- a/include/boost/numeric/ublas/expression_types.hpp +++ b/include/boost/numeric/ublas/expression_types.hpp @@ -199,7 +199,7 @@ namespace boost { namespace numeric { namespace ublas { typedef vector_slice vector_slice_type; typedef vector_slice const_vector_slice_type; // vector_indirect_type will depend on the A template parameter - typedef basic_range<> default_range; // required to avoid range/slice name confusion + typedef basic_range<> default_range; // required to avoid range/slice name confusion typedef basic_slice<> default_slice; public: // projection functions - projects must be constructable from default size_t, range and slice types @@ -343,7 +343,7 @@ namespace boost { namespace numeric { namespace ublas { typedef matrix_slice matrix_slice_type; typedef const matrix_slice const_matrix_slice_type; // matrix_indirect_type will depend on the A template parameter - typedef basic_range<> default_range; // required to avoid range/slice name confusion + typedef basic_range<> default_range; // required to avoid range/slice name confusion typedef basic_slice<> default_slice; public: diff --git a/include/boost/numeric/ublas/traits.hpp b/include/boost/numeric/ublas/traits.hpp index 5f361ab4..a2022017 100644 --- a/include/boost/numeric/ublas/traits.hpp +++ b/include/boost/numeric/ublas/traits.hpp @@ -49,10 +49,10 @@ namespace boost { namespace numeric { namespace ublas { }; - // Type traits - generic numeric properties and functions + // Type traits - generic numeric properties and functions template struct type_traits; - + // Define properties for a generic scalar type template struct scalar_traits { @@ -62,7 +62,7 @@ namespace boost { namespace numeric { namespace ublas { typedef T &reference; typedef T real_type; - typedef real_type precision_type; // we do not know what type has more precision then the real_type + typedef real_type precision_type; // we do not know what type has more precision then the real_type static const unsigned plus_complexity = 1; static const unsigned multiplies_complexity = 1; @@ -172,7 +172,7 @@ namespace boost { namespace numeric { namespace ublas { typedef T &reference; typedef typename T::value_type real_type; - typedef real_type precision_type; // we do not know what type has more precision then the real_type + typedef real_type precision_type; // we do not know what type has more precision then the real_type static const unsigned plus_complexity = 2; static const unsigned multiplies_complexity = 6; @@ -271,7 +271,7 @@ namespace boost { namespace numeric { namespace ublas { typedef const value_type &const_reference; typedef value_type &reference; typedef value_type real_type; - typedef real_type precision_type; // we do not know what type has more precision then the real_type + typedef real_type precision_type; // we do not know what type has more precision then the real_type static const unsigned plus_complexity = 1; static const unsigned multiplies_complexity = 1;