aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
diff options
context:
space:
mode:
authorGravatar Pavel Holoborodko <pavel@holoborodko.com>2013-08-20 16:06:13 +0900
committerGravatar Pavel Holoborodko <pavel@holoborodko.com>2013-08-20 16:06:13 +0900
commite4ffb7729ad41d58cb1a4b284601440b8f52bfb7 (patch)
treec83c5fed4cc469522cec72589e576396a020b8c5 /Eigen/src
parentd908ccc01cbb3483d3271589a16edde4358420fd (diff)
Removed unnecessary parentheses
Diffstat (limited to 'Eigen/src')
-rw-r--r--Eigen/src/SparseLU/SparseLU.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h
index aae82a1bc..f2b907326 100644
--- a/Eigen/src/SparseLU/SparseLU.h
+++ b/Eigen/src/SparseLU/SparseLU.h
@@ -268,7 +268,7 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
if(it.row() == j)
{
using std::abs;
- det *= (abs)(it.value());
+ det *= abs(it.value());
break;
}
}
@@ -296,7 +296,7 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
if(it.row() == j)
{
using std::log, std::abs;
- det += (log)((abs)(it.value()));
+ det += log(abs(it.value()));
break;
}
}