From 393e992465005a8e75bff935ad9dc82af26d5bc1 Mon Sep 17 00:00:00 2001 From: Adrian Hill Date: Mon, 2 Sep 2024 18:32:02 +0200 Subject: [PATCH] Add two-arg `atan`, `log` (#185) --- 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)