2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-20 03:02:13 +00:00

no matrix needed

[SVN r25140]
This commit is contained in:
Michael Stevens
2004-09-16 06:07:22 +00:00
parent b2b6586167
commit 0ffa255203

View File

@@ -18,7 +18,6 @@
#include <boost/numeric/ublas/config.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
#include "test1.hpp"
@@ -224,23 +223,23 @@ void test_vector () {
#ifdef USE_BOUNDED_VECTOR
#ifdef USE_FLOAT
std::cout << "float" << std::endl;
std::cout << "float, bounded" << std::endl;
test_my_vector<ublas::bounded_vector<float, 3>, 3> () ();
#endif
#ifdef USE_DOUBLE
std::cout << "double" << std::endl;
std::cout << "double, bounded" << std::endl;
test_my_vector<ublas::bounded_vector<double, 3>, 3> () ();
#endif
#ifdef USE_STD_COMPLEX
#ifdef USE_FLOAT
std::cout << "std::complex<float>" << std::endl;
std::cout << "std::complex<float>, bounded" << std::endl;
test_my_vector<ublas::bounded_vector<std::complex<float>, 3>, 3> () ();
#endif
#ifdef USE_DOUBLE
std::cout << "std::complex<double>" << std::endl;
std::cout << "std::complex<double>, bounded" << std::endl;
test_my_vector<ublas::bounded_vector<std::complex<double>, 3>, 3> () ();
#endif
#endif