| 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 |
|
|---|
| 7 | void 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 | }
|
|---|