Boost logo

Ublas :

From: Max Weinberg (max.weinberg_at_[hidden])
Date: 2005-05-03 08:54:09


> Are you storing 'size_t' as a ublas::vector element? i.e. is this cause by
> a type ublas::vector<size_t> or similar?

No, I am using compressed double vectors. You should hopefully be able to
reproduce the warnings by:

#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/vector_sparse.hpp>
int main()
{
        boost::numeric::ublas::compressed_vector<double> v1, v2;
        v1 = v1-v2;
}