X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libs%2Fnumeric%2Fublas%2Ftest%2Ftest32.cpp;h=eaf492976115da2dff9662b959798befed06d97c;hb=08c1e93fa36a49f49325a07fe91ff92c964c2b6c;hp=2ffc5021acfdd2b795933e30329a9b7ca4053f5e;hpb=bb4dd8289b351fae6b55e303f189127a394a1edd;p=platform%2Fupstream%2Fboost.git diff --git a/libs/numeric/ublas/test/test32.cpp b/libs/numeric/ublas/test/test32.cpp index 2ffc502..eaf4929 100644 --- a/libs/numeric/ublas/test/test32.cpp +++ b/libs/numeric/ublas/test/test32.cpp @@ -321,4 +321,34 @@ void test_matrix_vector () { #endif #endif #endif + +#ifdef USE_MAPPED_VECTOR_OF_MAPPED_VECTOR +#ifdef USE_STD_MAP +#ifdef USE_FLOAT + std::cout << "float mapped_vector_of_mapped_vector" << std::endl; + test_my_matrix_vector >, + ublas::mapped_vector_of_mapped_vector, 3 > () (); +#endif + +#ifdef USE_DOUBLE + std::cout << "double mapped_vector_of_mapped_vector" << std::endl; + test_my_matrix_vector >, + ublas::mapped_vector_of_mapped_vector, 3 > () (); +#endif + +#ifdef USE_STD_COMPLEX +#ifdef USE_FLOAT + std::cout << "std::complex mapped_vector_of_mapped_vector" << std::endl; + test_my_matrix_vector, std::map > >, + ublas::mapped_vector_of_mapped_vector >, 3 > () (); +#endif + +#ifdef USE_DOUBLE + std::cout << "std::complex mapped_vector_of_mapped_vector" << std::endl; + test_my_matrix_vector, std::map > >, + ublas::mapped_vector_of_mapped_vector >, 3 > () (); +#endif +#endif +#endif +#endif }