From 2976b00ae2b780fc43daa98bfc68900d9a111ff4 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Thu, 16 Sep 2004 06:06:58 +0000 Subject: [PATCH] bounded clearly marked in text output --- test1/test12.cpp | 8 ++++---- test1/test13.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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