$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Witz (witz_at_[hidden])
Date: 2003-11-23 20:09:58
hi,
I seem to be having problems with ublas in combination with msvc 7.1.
Compiling the code below results in a whole slew of errors of the form:
'use of undefined type
'boost::numeric::SOME_MATRIX_TYPE<ARGS>::const_iterator2'
Am i doing something dumb or is something broken?
#include <boost/numeric/ublas/triangular.hpp>
int main()
{
using namespace boost::numeric::ublas;
triangular_matrix<int,lower> ldm(4,4);
}
I.M.Whittley