Ticket #4862: vector.cpp

File vector.cpp, 551 bytes (added by jan.boehme@…, 12 years ago)

sample code to reproduce the error

Line 
1
2#include <boost/numeric/ublas/matrix_sparse.hpp>
3#include <boost/numeric/ublas/vector_of_vector.hpp>
4#include <boost/numeric/ublas/operation.hpp>
5#include <boost/numeric/ublas/operation_sparse.hpp>
6
7void global_vector_todoflist_compmult()
8{
9 using namespace boost::numeric;
10 typedef double real_type;
11 typedef boost::numeric::ublas::generalized_vector_of_vector< real_type, ublas::row_major, ublas::vector<ublas::coordinate_vector<real_type> > > sparse_matrix_assemble;
12 sparse_matrix_assemble assemble_matyp (1u, 2u, 3u);
13}