Boost logo

Ublas :

Subject: Re: [ublas] LAPACK bindings error
From: Thomas Klimpel (thomas.klimpel_at_[hidden])
Date: 2014-03-24 12:09:38


Hi,

> This file is already included. Here is the list of .h files I am including:

The file

#include <boost/numeric/bindings/ublas/matrix.hpp>

is not included. Instead, you have included

#include <boost/numeric/ublas/matrix.hpp>
and
#include <boost/numeric/bindings/traits/ublas_matrix.hpp>
 
The fact that the file "bindings/traits/ublas_matrix.hpp" even exists in your include path means that
1) either you are not using a current version of numeric_bindings
2) or you also have an old version of numeric_bindings also in your include path
3) or you have not removed the files that are no longer part of numeric_bindings.

If you are using a current version of numeric_bindings, you can also try to include
#include <boost/numeric/bindings/ublas.hpp>
then you don't need to worry about the details of the required include files.

Regards, 
Thomas Klimpel