We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d762662 commit eb09eccCopy full SHA for eb09ecc
src/Evaluate.jl
@@ -70,11 +70,11 @@ end
70
throw(ArgumentError("Invalid keyword argument(s): $(keys(deprecated_kws))"))
71
end
72
if !isempty(deprecated_kws)
73
- @assert eval_options === nothing "Cannot use both `eval_options` and deprecated flags `turbo` and `bumper`."
74
- Base.depwarn(
75
- "The `turbo` and `bumper` keyword arguments are deprecated. Please use `eval_options` instead.",
76
- :eval_tree_array,
+ @assert(
+ eval_options === nothing,
+ "Cannot use both `eval_options` and deprecated flags `turbo` and `bumper`."
77
)
+ # TODO: We don't do a depwarn as it can GREATLY bottleneck the search speed.
78
79
if eval_options !== nothing
80
return eval_options
0 commit comments