1Copyright (c) 2000-2011 Joerg Walter, Mathias Koch, David Bellot
2
3Distributed under the Boost Software License, Version 1.0. (See
4accompanying file LICENSE_1_0.txt or copy at
5http://www.boost.org/LICENSE_1_0.txt)
6
7uBLAS test director
8	Use boost::test to test various uBLAS containers and expressions
9
10The tests can be used individually or automaticaly as part of the uBLAS regression tests.
11
12The tests are broken down in directorys as follows:
13
14test1 - dense vector and matrix tests
15test2 - BLAS tests
16test3 - sparse vector and matrix tests
17test4 - banded/diagonal matrix tests
18test5 - triangular matrix tests
19test6 - symmetric matrix tests
20test7 - dense vector and matrix tests with boost::numeric::internal values
21
22Each test directory contains:
23	testX.hpp	Headers and types to be tested
24	testX.cpp	Call the test functions for the defined types
25	testX1.cpp	Implements vector tests
26	testX2.cpp	Implements vector/matrix tests
27	testX3.cpp	Implements matrix tests
28
29Missing in these tests
30	a) Runtime result validation.
31	b) Iterator interface tests. Only complete container expressions are tested
32