mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-22 15:52:18 +00:00
Many bugfixes and improvements, especially related to sparse matrices.
Thanks namely to Kresimir Fresl and Michael Stevens this time.
This commit is contained in:
@@ -140,11 +140,21 @@ void test_blas_2<V, M, N>::operator () () {
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef USE_FLOAT
|
||||
template struct test_blas_2<ublas::vector<float>, ublas::matrix<float>, 3>;
|
||||
template struct test_blas_2<ublas::vector<double>, ublas::matrix<double>, 3>;
|
||||
|
||||
#ifdef USE_STD_COMPLEX
|
||||
template struct test_blas_2<ublas::vector<std::complex<float> >, ublas::matrix<std::complex<float> >, 3>;
|
||||
template struct test_blas_2<ublas::vector<std::complex<double> >, ublas::matrix<std::complex<double> >, 3>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
template struct test_blas_2<ublas::vector<double>, ublas::matrix<double>, 3>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_STD_COMPLEX
|
||||
#ifdef USE_FLOAT
|
||||
template struct test_blas_2<ublas::vector<std::complex<float> >, ublas::matrix<std::complex<float> >, 3>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
template struct test_blas_2<ublas::vector<std::complex<double> >, ublas::matrix<std::complex<double> >, 3>;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user