Skip to content

Commit

Permalink
Fix more misclassifications
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Apr 19, 2024
1 parent 16d4732 commit 8ed0129
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
# ∂²f/∂x² != 0
ops_1_to_1_s = (
# trigonometric functions
:deg2rad, :rad2deg,
:cos, :cosd, :cosh, :cospi, :cosc,
:sin, :sind, :sinh, :sinpi, :sinc,
:tan, :tand, :tanh,
Expand All @@ -40,15 +39,16 @@ ops_1_to_1_s = (
# absolute values
:abs2,
# other
:inv, :hypot,
:inv,
)

# ops_1_to_1_f:
# ∂f/∂x != 0
# ∂²f/∂x² == 0
ops_1_to_1_f = (
:+, :-,
:abs,
:abs, :hypot,
:deg2rad, :rad2deg,
:mod2pi, :prevfloat, :nextfloat,
)

Expand Down

0 comments on commit 8ed0129

Please sign in to comment.