mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
Simplified the code a bit
This commit is contained in:
parent
73b68d4370
commit
b1ae39794c
@ -312,7 +312,7 @@ cosh() const
|
|||||||
*
|
*
|
||||||
* \sa cos(), sin(), tan()
|
* \sa cos(), sin(), tan()
|
||||||
*/
|
*/
|
||||||
inline const CwiseUnaryOp<internal::scalar_lgamma_op<Scalar>, Derived>
|
inline const LgammaReturnType
|
||||||
lgamma() const
|
lgamma() const
|
||||||
{
|
{
|
||||||
return LgammaReturnType(derived());
|
return LgammaReturnType(derived());
|
||||||
@ -326,7 +326,7 @@ lgamma() const
|
|||||||
*
|
*
|
||||||
* \sa cos(), sin(), tan()
|
* \sa cos(), sin(), tan()
|
||||||
*/
|
*/
|
||||||
inline const CwiseUnaryOp<internal::scalar_erf_op<Scalar>, Derived>
|
inline const ErfReturnType
|
||||||
erf() const
|
erf() const
|
||||||
{
|
{
|
||||||
return ErfReturnType(derived());
|
return ErfReturnType(derived());
|
||||||
@ -340,7 +340,7 @@ erf() const
|
|||||||
*
|
*
|
||||||
* \sa cos(), sin(), tan()
|
* \sa cos(), sin(), tan()
|
||||||
*/
|
*/
|
||||||
inline const CwiseUnaryOp<internal::scalar_erfc_op<Scalar>, Derived>
|
inline const ErfcReturnType
|
||||||
erfc() const
|
erfc() const
|
||||||
{
|
{
|
||||||
return ErfcReturnType(derived());
|
return ErfcReturnType(derived());
|
||||||
|
Loading…
Reference in New Issue
Block a user