mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
oops, bad copy paste in ei_psqrt, thanks to Jitse Niesen
This commit is contained in:
parent
40432c84b9
commit
adf5104bae
@ -194,7 +194,7 @@ template<typename Packet> inline static Packet ei_pexp(Packet a) { return ei_exp
|
||||
template<typename Packet> inline static Packet ei_plog(Packet a) { return ei_log(a); }
|
||||
|
||||
/** \internal \returns the square-root of \a a (coeff-wise) */
|
||||
template<typename Packet> inline static Packet ei_psqrt(Packet a) { return ei_log(a); }
|
||||
template<typename Packet> inline static Packet ei_psqrt(Packet a) { return ei_sqrt(a); }
|
||||
|
||||
/***************************************************************************
|
||||
* The following functions might not have to be overwritten for vectorized types
|
||||
|
Loading…
Reference in New Issue
Block a user