From 8ed01290591d5864f73f32d117993743c92958e2 Mon Sep 17 00:00:00 2001 From: adrhill Date: Fri, 19 Apr 2024 15:20:19 +0200 Subject: [PATCH] Fix more misclassifications --- src/operators.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/operators.jl b/src/operators.jl index ce9a4856..31ee0b73 100644 --- a/src/operators.jl +++ b/src/operators.jl @@ -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, @@ -40,7 +39,7 @@ ops_1_to_1_s = ( # absolute values :abs2, # other - :inv, :hypot, + :inv, ) # ops_1_to_1_f: @@ -48,7 +47,8 @@ ops_1_to_1_s = ( # ∂²f/∂x² == 0 ops_1_to_1_f = ( :+, :-, - :abs, + :abs, :hypot, + :deg2rad, :rad2deg, :mod2pi, :prevfloat, :nextfloat, )