use gmpxx instead of mpfr++
This commit is contained in:
parent
cfd0579a4a
commit
e31c1e72fb
3 changed files with 13 additions and 11 deletions
|
|
@ -208,7 +208,8 @@ public:
|
|||
inline virtual T L_i_i( const typename Cholesky<T>::CovarMat& V, const unsigned int& i, const T& sum ) const
|
||||
{
|
||||
/***** ugly hack *****/
|
||||
return sqrt( fabs( V(i,i) - sum) );
|
||||
//return sqrt( fabs( V(i,i) - sum) );
|
||||
return sqrt( abs( V(i,i) - sum) );
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue