ClickHouse/src/Functions/erf.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
327 B
C++
Raw Normal View History

2019-08-01 00:29:32 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
struct ErfName { static constexpr auto name = "erf"; };
2022-01-22 18:44:36 +00:00
using FunctionErf = FunctionMathUnary<UnaryFunctionVectorized<ErfName, std::erf>>;
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(Erf)
{
factory.registerFunction<FunctionErf>();
}
}