From 8472e697ca606e2ea1a67cc2dfa175757666cc02 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 17 Oct 2014 15:31:11 +0200 Subject: Add lapack interface to JacobiSVD and BDCSVD --- lapack/lapack_common.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lapack/lapack_common.h') diff --git a/lapack/lapack_common.h b/lapack/lapack_common.h index e558c1409..a93598784 100644 --- a/lapack/lapack_common.h +++ b/lapack/lapack_common.h @@ -1,7 +1,7 @@ // This file is part of Eigen, a lightweight C++ template library // for linear algebra. // -// Copyright (C) 2010-2011 Gael Guennebaud +// Copyright (C) 2010-2014 Gael Guennebaud // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed @@ -18,6 +18,11 @@ typedef Eigen::Map > PivotsType; +#if ISCOMPLEX +#define EIGEN_LAPACK_ARG_IF_COMPLEX(X) X, +#else +#define EIGEN_LAPACK_ARG_IF_COMPLEX(X) +#endif #endif // EIGEN_LAPACK_COMMON_H -- cgit v1.2.3