1 | // |
---|
2 | // Copyright (c) 2000-2002 |
---|
3 | // Joerg Walter, Mathias Koch |
---|
4 | // |
---|
5 | // Permission to use, copy, modify, distribute and sell this software |
---|
6 | // and its documentation for any purpose is hereby granted without fee, |
---|
7 | // provided that the above copyright notice appear in all copies and |
---|
8 | // that both that copyright notice and this permission notice appear |
---|
9 | // in supporting documentation. The authors make no representations |
---|
10 | // about the suitability of this software for any purpose. |
---|
11 | // It is provided "as is" without express or implied warranty. |
---|
12 | // |
---|
13 | // The authors gratefully acknowledge the support of |
---|
14 | // GeNeSys mbH & Co. KG in producing this work. |
---|
15 | // |
---|
16 | |
---|
17 | #include <boost/numeric/ublas/vector.hpp> |
---|
18 | #include <boost/numeric/ublas/vector_proxy.hpp> |
---|
19 | #include <boost/numeric/ublas/vector_sparse.hpp> |
---|
20 | #include <boost/numeric/ublas/matrix.hpp> |
---|
21 | #include <boost/numeric/ublas/matrix_proxy.hpp> |
---|
22 | #include <boost/numeric/ublas/banded.hpp> |
---|
23 | #include <boost/numeric/ublas/triangular.hpp> |
---|
24 | #include <boost/numeric/ublas/symmetric.hpp> |
---|
25 | #include <boost/numeric/ublas/hermitian.hpp> |
---|
26 | #include <boost/numeric/ublas/matrix_sparse.hpp> |
---|
27 | #include <boost/numeric/ublas/vector_of_vector.hpp> |
---|
28 | #include <boost/numeric/ublas/detail/concepts.hpp> |
---|
29 | |
---|
30 | namespace ublas = boost::numeric::ublas; |
---|
31 | |
---|
32 | |
---|
33 | int main () { |
---|
34 | void (* check) (void) = ublas::concept_checks; |
---|
35 | boost::ignore_unused_variable_warning (check); |
---|
36 | } |
---|