Boost logo

Ublas :

From: Gunter Winkler (guwi17_at_[hidden])
Date: 2008-02-09 08:41:14


Sandeep Gupta schrieb:
> Hello all,
> I am using ublas with umfpack bindings from the boost sandbox. I am
> very close to making this work with GotoAtlas. But for one small
> problem and would appreciate any help on this.
>
> The following line in the bindings/traits/ublas_sparse.hpp gives error:
> "assert (cm.filled1() == layout_type::size1 (cm.size1(), cm.size2())
> + 1);"
>
> It complains about the size1 functions as :
> ../Boost/boost/numeric/bindings/traits/ublas_sparse.hpp:73: error:
> `size1' is not a member of `boost::numeric::ublas::column_major'
>

size1() has been renamed to size_M() (major size)
size2() has been renamed to size_m() (minor size)

HTH
Gunter