diff --git a/test1/test12.cpp b/test1/test12.cpp index 7b8f50db..1ef454a0 100644 --- a/test1/test12.cpp +++ b/test1/test12.cpp @@ -174,26 +174,26 @@ void test_matrix_vector () { #ifdef USE_BOUNDED_MATRIX #ifdef USE_FLOAT - std::cout << "float" << std::endl; + std::cout << "float, bounded" << std::endl; test_my_matrix_vector, ublas::bounded_matrix, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "double" << std::endl; + std::cout << "double, bounded" << std::endl; test_my_matrix_vector, ublas::bounded_matrix, 3> () (); #endif #ifdef USE_STD_COMPLEX #ifdef USE_FLOAT - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_matrix_vector, 3>, ublas::bounded_matrix, 3, 3>, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_matrix_vector, 3>, ublas::bounded_matrix, 3, 3>, 3> () (); #endif diff --git a/test1/test13.cpp b/test1/test13.cpp index 0eb5d637..8950f207 100644 --- a/test1/test13.cpp +++ b/test1/test13.cpp @@ -212,23 +212,23 @@ void test_matrix () { #ifdef USE_BOUNDED_MATRIX #ifdef USE_FLOAT - std::cout << "float" << std::endl; + std::cout << "float, bounded" << std::endl; test_my_matrix, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "double" << std::endl; + std::cout << "double, bounded" << std::endl; test_my_matrix, 3> () (); #endif #ifdef USE_STD_COMPLEX #ifdef USE_FLOAT - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_matrix, 3, 3>, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_matrix, 3, 3>, 3> () (); #endif #endif