Skip to content

Commit

Permalink
Format .jl files (#109)
Browse files Browse the repository at this point in the history
Co-authored-by: sshin23 <sshin23@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and sshin23 authored Nov 6, 2024
1 parent 57566d0 commit 9d4a7d3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/functionlist.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,13 @@
x -> 57.29577951308232286464772187173366546630859375 * 2 * x / (1 + x^2)^2
)
@register_univariate(Base.sinh, cosh, sinh)
@register_univariate(Base.asinh, x -> 1/sqrt(x^2 + 1), x -> - x/sqrt(x^2 + 1)^3)
@register_univariate(Base.asinh, x -> 1 / sqrt(x^2 + 1), x -> -x / sqrt(x^2 + 1)^3)
@register_univariate(Base.cosh, sinh, cosh)
@register_univariate(Base.acosh, x -> 1/sqrt((x-1)*(x+1)), x -> - x/sqrt((x - 1)*(x + 1))^3)
@register_univariate(
Base.acosh,
x -> 1 / sqrt((x - 1) * (x + 1)),
x -> -x / sqrt((x - 1) * (x + 1))^3
)
@register_univariate(Base.tanh, x -> 1 - tanh(x)^2, x -> -2 * tanh(x) * (1 - tanh(x)^2))
@register_univariate(
Base.csch,
Expand Down

0 comments on commit 9d4a7d3

Please sign in to comment.