#ifndef MEDUSA_BITS_APPROXIMATIONS_JACOBISVDWRAPPER_HPP_ #define MEDUSA_BITS_APPROXIMATIONS_JACOBISVDWRAPPER_HPP_ /** * @file * Implementation of JacobiSVDWrapper. */ #include "JacobiSVDWrapper_fwd.hpp" namespace mm { template void JacobiSVDWrapper::compute( const Eigen::Matrix& M) { Eigen::JacobiSVD, QRPreconditioner>::compute( M, Eigen::ComputeThinU | Eigen::ComputeThinV); } } // namespace mm #endif // MEDUSA_BITS_APPROXIMATIONS_JACOBISVDWRAPPER_HPP_