Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/numeric/ublas/test/concepts.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.6 KB
Line 
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#ifdef BOOST_MSVC
18
19#pragma warning (disable: 4355)
20#pragma warning (disable: 4503)
21#pragma warning (disable: 4786)
22
23#endif
24
25#include <cassert>
26#include <iostream>
27
28#include <boost/numeric/ublas/vector.hpp>
29#include <boost/numeric/ublas/vector_proxy.hpp>
30#include <boost/numeric/ublas/vector_sparse.hpp>
31#include <boost/numeric/ublas/matrix.hpp>
32#include <boost/numeric/ublas/matrix_proxy.hpp>
33#include <boost/numeric/ublas/banded.hpp>
34#include <boost/numeric/ublas/triangular.hpp>
35#include <boost/numeric/ublas/symmetric.hpp>
36#include <boost/numeric/ublas/hermitian.hpp>
37#include <boost/numeric/ublas/matrix_sparse.hpp>
38#include <boost/numeric/ublas/vector_of_vector.hpp>
39#include <boost/numeric/ublas/io.hpp>
40
41#include <boost/numeric/ublas/detail/concepts.hpp>
42
43namespace ublas = boost::numeric::ublas;
44
45int main () {
46    void (* check) (void) = ublas::concept_checks;
47    boost::ignore_unused_variable_warning (check);
48    return 0;
49}
50
Note: See TracBrowser for help on using the repository browser.