• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

common/H06-Aug-2015-237189

manual/H06-Aug-2015-193146

Jamfile.v2H A D06-Aug-20155.6 KiB223211

READMEH A D06-Aug-20151.1 KiB3224

begin_end.cppH A D06-Aug-20156 KiB182135

comp_mat_erase.cppH A D06-Aug-20153.6 KiB10763

concepts.cppH A D06-Aug-20151.1 KiB3518

num_columns.cppH A D06-Aug-20154.4 KiB11172

num_rows.cppH A D06-Aug-20154.3 KiB11172

placement_new.cppH A D06-Aug-20151.6 KiB6436

size.cppH A D06-Aug-201512.7 KiB276159

sparse_view_test.cppH A D06-Aug-20153 KiB10754

test1.cppH A D06-Aug-2015453 217

test1.hppH A D06-Aug-2015756 3414

test11.cppH A D06-Aug-20158.6 KiB266201

test12.cppH A D06-Aug-201511.2 KiB278223

test13.cppH A D06-Aug-201511.4 KiB326252

test2.cppH A D06-Aug-20152.2 KiB8860

test2.hppH A D06-Aug-20151.1 KiB5227

test21.cppH A D06-Aug-20152.6 KiB9656

test22.cppH A D06-Aug-20155.2 KiB148110

test23.cppH A D06-Aug-20159 KiB209175

test3.cppH A D06-Aug-2015453 217

test3.hppH A D06-Aug-20151,001 3920

test31.cppH A D06-Aug-20158.2 KiB249191

test32.cppH A D06-Aug-201518 KiB355291

test33.cppH A D06-Aug-201516.5 KiB372294

test4.cppH A D06-Aug-2015433 206

test4.hppH A D06-Aug-2015849 4015

test42.cppH A D06-Aug-201517.6 KiB362302

test43.cppH A D06-Aug-201511.8 KiB327256

test5.cppH A D06-Aug-2015433 206

test5.hppH A D06-Aug-2015809 3614

test52.cppH A D06-Aug-201510.4 KiB215171

test53.cppH A D06-Aug-20158.3 KiB224167

test6.cppH A D06-Aug-2015433 206

test6.hppH A D06-Aug-2015732 3313

test62.cppH A D06-Aug-201510.4 KiB219175

test63.cppH A D06-Aug-20158.1 KiB224169

test7.cppH A D06-Aug-2015723 3213

test7.hppH A D06-Aug-2015836 3716

test71.cppH A D06-Aug-20156 KiB171125

test72.cppH A D06-Aug-20157.5 KiB166127

test73.cppH A D06-Aug-20157.7 KiB203153

test_assignment.cppH A D06-Aug-201527 KiB781640

test_banded_storage_layout.cppH A D06-Aug-20158.1 KiB292213

test_complex_norms.cppH A D06-Aug-20152.6 KiB8359

test_coordinate_matrix_inplace_merge.cppH A D06-Aug-20153.6 KiB12194

test_coordinate_matrix_sort.cppH A D06-Aug-20152.4 KiB7447

test_coordinate_vector_inplace_merge.cppH A D06-Aug-20153.2 KiB11086

test_fixed_containers.cppH A D06-Aug-20156.6 KiB310198

test_inplace_solve.cppH A D06-Aug-20154.1 KiB124100

test_lu.cppH A D06-Aug-20151.8 KiB7147

test_matrix_vector.cppH A D06-Aug-201515.6 KiB459343

test_ticket7296.cppH A D06-Aug-201510.9 KiB293205

test_triangular.cppH A D06-Aug-20154 KiB130111

triangular_access.cppH A D06-Aug-20155.7 KiB221160

triangular_layout.cppH A D06-Aug-20154.3 KiB140100

utils.hppH A D06-Aug-201518.1 KiB397222

README

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