@@ -82,7 +82,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
8282 tree = convert (Node{T}, tree)
8383 truth = cos (cos (T (3.0f0 )))
8484 @test DynamicExpressions. EvaluateEquationModule. deg1_l1_ll0_eval (
85- tree, [zero (T)]' , cos, cos, operators, Val (turbo)
85+ tree, [zero (T)]' , cos, cos, Val (turbo)
8686 )[1 ][1 ] ≈ truth
8787
8888 # op(<constant>, <constant>)
@@ -91,7 +91,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
9191 tree = convert (Node{T}, tree)
9292 truth = T (3.0f0 ) + T (4.0f0 )
9393 @test DynamicExpressions. EvaluateEquationModule. deg2_l0_r0_eval (
94- tree, [zero (T)]' , (+ ), operators, Val (turbo)
94+ tree, [zero (T)]' , (+ ), Val (turbo)
9595 )[1 ][1 ] ≈ truth
9696
9797 # op(op(<constant>, <constant>))
@@ -100,7 +100,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
100100 tree = convert (Node{T}, tree)
101101 truth = cos (T (3.0f0 ) + T (4.0f0 ))
102102 @test DynamicExpressions. EvaluateEquationModule. deg1_l2_ll0_lr0_eval (
103- tree, [zero (T)]' , cos, (+ ), operators, Val (turbo)
103+ tree, [zero (T)]' , cos, (+ ), Val (turbo)
104104 )[1 ][1 ] ≈ truth
105105
106106 # Test for presence of NaNs:
0 commit comments