From 3941d72c2cabc27c5a04f1ba6f5c0d0d52e4cd76 Mon Sep 17 00:00:00 2001 From: adrhill Date: Mon, 2 Sep 2024 18:16:03 +0200 Subject: [PATCH] Add two-arg `atan`, `log` --- src/operators.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operators.jl b/src/operators.jl index 82d813a2..8885043c 100644 --- a/src/operators.jl +++ b/src/operators.jl @@ -138,7 +138,7 @@ is_der_cross_zero_local(f::F, x, y) where {F} = is_der_cross_zero_global(f) # ∂²f/∂y² != 0 # ∂²f/∂x∂y != 0 ops_2_to_1_ssc = ( - ^, hypot + ^, hypot, atan, log ) for op in ops_2_to_1_ssc T = typeof(op)