aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitseniesen@yahoo.com>2014-02-08 20:27:13 +0000
committerGravatar Jitse Niesen <jitseniesen@yahoo.com>2014-02-08 20:27:13 +0000
commitc4f08cfc0539505f82c7b35d61b73adbed70730d (patch)
treef048d28eb2b5968e51b231cfab7c1ceb2b7e6796
parentff8d81762d6612b812db6385b1096c6a8b1006cc (diff)
parent9e71ecbeec4df51b4f25985a6fabe5a06604a0d0 (diff)
Merged in maksqwe/eigen/maksqwe/fix-typo-in-evalSolverSugarFunction (pull request PR-44)
fix typo in evalSolverSugarFunction()
-rw-r--r--unsupported/test/polynomialsolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/test/polynomialsolver.cpp b/unsupported/test/polynomialsolver.cpp
index 13f92169e..3c9265d98 100644
--- a/unsupported/test/polynomialsolver.cpp
+++ b/unsupported/test/polynomialsolver.cpp
@@ -120,7 +120,7 @@ void evalSolverSugarFunction( const POLYNOMIAL& pols, const ROOTS& roots, const
bool found = false;
for( size_t j=0; j<calc_realRoots.size()&& !found; ++j )
{
- if( internal::isApprox( calc_realRoots[i], real_roots[j] ), psPrec ){
+ if( internal::isApprox( calc_realRoots[i], real_roots[j], psPrec ) ){
found = true; }
}
VERIFY( found );