aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/common.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-12-01 18:06:28 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-12-01 18:06:28 +0100
commit3a4c78b588ff523cb07bd7068cbe857b9b6a7ded (patch)
treebc81c4bd734617d075325d6531bf8920254368e8 /blas/common.h
parent9fdb6a2ead35df0b91acd044267b1113e36232b9 (diff)
add code for band triangular problems:
- currently available from the BLAS interface only - and for vectors only
Diffstat (limited to 'blas/common.h')
-rw-r--r--blas/common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/blas/common.h b/blas/common.h
index a63a5d286..714bce574 100644
--- a/blas/common.h
+++ b/blas/common.h
@@ -93,6 +93,12 @@ inline bool check_uplo(const char* uplo)
#include <Eigen/Core>
#include <Eigen/Jacobi>
+
+
+namespace Eigen {
+#include "BandTriangularSolver.h"
+}
+
using namespace Eigen;
typedef SCALAR Scalar;