mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-19 14:52:17 +00:00
tabs
[SVN r24547]
This commit is contained in:
4
Jamfile
4
Jamfile
@@ -37,9 +37,9 @@ UBLAS_TESTSET ?=
|
||||
|
||||
UBLAS_TESTSET_SPARSE ?=
|
||||
<define>USE_DOUBLE <define>USE_STD_COMPLEX
|
||||
# <define>USE_RANGE <define>USE_SLICE Too complex for regression testing
|
||||
# <define>USE_RANGE <define>USE_SLICE Too complex for regression testing
|
||||
<define>USE_UNBOUNDED_ARRAY
|
||||
<define>USE_STD_MAP
|
||||
<define>USE_STD_MAP
|
||||
<define>USE_SPARSE_VECTOR <define>USE_COMPRESSED_VECTOR <define>USE_COORDINATE_VECTOR
|
||||
<define>USE_SPARSE_MATRIX <define>USE_COMPRESSED_MATRIX <define>USE_COORDINATE_MATRIX ;
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
}}}
|
||||
|
||||
namespace std {
|
||||
// Needed for ICC on Itanium?
|
||||
// Needed for ICC on Itanium?
|
||||
template<class C, class IC>
|
||||
inline
|
||||
void iter_swap (boost::numeric::ublas::indexed_iterator<C, IC> it1,
|
||||
|
||||
@@ -76,7 +76,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
// Assignment
|
||||
BOOST_UBLAS_INLINE
|
||||
sparse_matrix_element &operator = (const sparse_matrix_element &p) {
|
||||
// Overide the implict copy assignment
|
||||
// Overide the implict copy assignment
|
||||
d_ = p.d_;
|
||||
dirty_ = true;
|
||||
return *this;
|
||||
@@ -117,7 +117,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Comparison
|
||||
// Comparison
|
||||
template<class D>
|
||||
BOOST_UBLAS_INLINE
|
||||
bool operator == (const D &d) const {
|
||||
|
||||
@@ -75,7 +75,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
// Assignment
|
||||
BOOST_UBLAS_INLINE
|
||||
sparse_vector_element &operator = (const sparse_vector_element &p) {
|
||||
// Overide the implict copy assignment
|
||||
// Overide the implict copy assignment
|
||||
d_ = p.d_;
|
||||
dirty_ = true;
|
||||
return *this;
|
||||
@@ -116,7 +116,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Comparison
|
||||
// Comparison
|
||||
template<class D>
|
||||
BOOST_UBLAS_INLINE
|
||||
bool operator == (const D &d) const {
|
||||
|
||||
@@ -41,12 +41,12 @@ void test_matrix ();
|
||||
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
@@ -83,12 +83,12 @@ struct test_blas_3 {
|
||||
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
@@ -40,12 +40,12 @@ void test_matrix_vector ();
|
||||
void test_matrix ();
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
@@ -49,12 +49,12 @@ void test_matrix ();
|
||||
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
@@ -66,12 +66,12 @@ void test_matrix ();
|
||||
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
@@ -66,12 +66,12 @@ void test_matrix ();
|
||||
|
||||
|
||||
// Disable some tests for truly broken compilers
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
// MSVC Version 6.0 & 7.0 have problems compiling with std::complex
|
||||
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
// Intel for Windows fails to link when a std::complex is returned!
|
||||
#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800) && defined(__ICL)
|
||||
#undef USE_STD_COMPLEX
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user