* merged [56045] into release
* add enable_if to operator* for scalar*vector, vector*scalar, scalar*matrix, matrix*scalar in order to hinder unexpected instantiation.
[SVN r56625]
* test/manual/test_move_semantics.cpp: example and manual test case to demonstrate move semantics
* test/manual/Jamfile.v2: added new target test_move_semantics
* doc/ublas.css: added pre.screen class for code snippets, added p.credit class for thanks and credits
* doc/overview.htm: fixed broken anchors and missing alt-attribute
* doc/release_notes.htm: added new feature to release list
* doc/options.htm: new page to document preprocessore switches (mostly copied from Wiki)
* doc/index.htm: added link to options.htm
[SVN r56248]
test/concepts.cpp:
* prepared test for vector_view and sparse_view (still disabled)
test/sparse_view_test.cpp:
* test case for sparse_view, currently only operator(i,j) is tested
test/Jamfile.v2:
* added new test case to test suite
[SVN r56005]
traits.hpp:
* split traits into "view traits" and "mutable traits"
experimental:
* added new folder for emerging/unfinished features
experimental/sparse_view.hpp:
* added new class c_array_view which presents a T* array and a size as vector_view
* added new class compressed_matrix_view which wraps three arrays into a matrix_view
detail/concepts.hpp:
* prepared vector_view concept (still disabled because further work is needed here)
[SVN r56003]
ublas/doc/samples/Jamfile.v2: added build section for ex_triangular
ublas/doc/container_concept.htm: fixed wrong description of array_type
ublas/doc/triangular.htm: fixed lower/upper confusion and added link to ex_triangular
ublas/test/test_lu.cpp: added unit test for LU decomposition
ublas/test/triangular_access.cpp: added unit test for accessing triangular/symmetric matrices
ublas/test/triangular_layout.cpp: added unit test for testing storage layout of triangular/symmetric matrices
ublas/test/common/testhelper.hpp: support routines for new unit tests
ublas/test/CMakeLists.txt: added new tests (still experimental) test_lu, triangular_access. triangular_layout
ublas/test/Jamfile.v2:
added new tests (still experimental) test_lu, triangular_access. triangular_layout
disabled broken test7 (maybe a fix of boost::interval is needed, see #2473)
ublas/test/test71.cpp, ublas/test/test73.cpp, ublas/test/test7.cpp:
added first fixes to support boost::interval as scalar type
ublas/test/common/init.hpp:
initialize all matrices/vectors with floats instead of (unsigned) ints
this helps to fix broken test7 for boost::interval
[SVN r52147]
ublas/fwd.hpp: added default template arguments to declaration of generalized_vector_of_vector
ublas/lu.hpp: added constructor from vector to permutation_matrix
ublas/storage.hpp: fix#2891
ublas/detail/concepts.hpp: added documentation and some missing concept checks
ublas/traits.hpp:
added new traits classes: container_traits, matrix_traits, vector_traits
they work for all ublas classes and c-arrays (T[M][N] and T[M])
ublas/functional.hpp:
added triangular type tags
fix#2800
added my name to copyright message
[SVN r52145]
test/test73.cpp reverted addition of special initilizer
test/common/init.hpp changed common initilizer to use float instead of (unsigned) int to initialize test vectors/matrices (this solved some boost::interval issues, but revealed other ones)
[SVN r52142]
* added triangular_type definitions
* added transposed_layout to basic_row_major and basic_column_major
* fix#2800 : transposed_structure has to switch row major and column major
[SVN r51764]
triangular_access.cpp: tests constant and mutable iterators over triangular matrices
triangular_layout.cpp: tests storage layout of symmetric and triangular matrices
common/testhelper.hpp: added more common helper functions for tests
Jamfile.v2: added new unit tests
[SVN r51763]