mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-10 23:21:47 +08:00
Fix typo ('using namespace' instead of 'using').
(transplanted from d23845c4cc84f2ab80b0ea5c0b8941dee5ee55ca )
This commit is contained in:
parent
33efb8ed62
commit
a6f8da7c48
@ -250,9 +250,9 @@ EIGEN_STRONG_INLINE void MatrixExponential<MatrixType>::pade13(const MatrixType
|
|||||||
template <typename MatrixType>
|
template <typename MatrixType>
|
||||||
void MatrixExponential<MatrixType>::computeUV(float)
|
void MatrixExponential<MatrixType>::computeUV(float)
|
||||||
{
|
{
|
||||||
using namespace std::max;
|
using std::max;
|
||||||
using namespace std::pow;
|
using std::pow;
|
||||||
using namespace std::ceil;
|
using std::ceil;
|
||||||
if (m_l1norm < 4.258730016922831e-001) {
|
if (m_l1norm < 4.258730016922831e-001) {
|
||||||
pade3(m_M);
|
pade3(m_M);
|
||||||
} else if (m_l1norm < 1.880152677804762e+000) {
|
} else if (m_l1norm < 1.880152677804762e+000) {
|
||||||
@ -268,9 +268,9 @@ void MatrixExponential<MatrixType>::computeUV(float)
|
|||||||
template <typename MatrixType>
|
template <typename MatrixType>
|
||||||
void MatrixExponential<MatrixType>::computeUV(double)
|
void MatrixExponential<MatrixType>::computeUV(double)
|
||||||
{
|
{
|
||||||
using namespace std::max;
|
using std::max;
|
||||||
using namespace std::pow;
|
using std::pow;
|
||||||
using namespace std::ceil;
|
using std::ceil;
|
||||||
if (m_l1norm < 1.495585217958292e-002) {
|
if (m_l1norm < 1.495585217958292e-002) {
|
||||||
pade3(m_M);
|
pade3(m_M);
|
||||||
} else if (m_l1norm < 2.539398330063230e-001) {
|
} else if (m_l1norm < 2.539398330063230e-001) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user