9#ifndef __EIGEN3_SVD_C_API_CC__
10#define __EIGEN3_SVD_C_API_CC__
13#if defined(__GNUC__) && !defined(__clang__)
14# pragma GCC diagnostic ignored "-Wlogical-op"
17#ifdef __EIGEN3_SVD_C_API_CC__
27using Eigen::JacobiSVD;
29using Eigen::NoQRPreconditioner;
31using Eigen::ComputeThinU;
32using Eigen::ComputeThinV;
43 unsigned int flags = (r_U ? ComputeThinU : 0) | (r_V ? ComputeThinV : 0);
static DBVT_INLINE btScalar size(const btDbvtVolume &a)
void EIG_svd_square_matrix(const int size, const float *matrix, float *r_U, float *r_S, float *r_V)