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.
2 parents 5b18dea + 6616196 commit 7723130Copy full SHA for 7723130
src/symbolic.jl
@@ -93,7 +93,7 @@ function simplify(ex::Expr)
93
if ex.head != :call
94
return ex
95
end
96
- if all(map(isnumber, ex.args[2:end])) && length(ex.args) > 1
+ if all(isnumber, ex.args[2:end]) && length(ex.args) > 1
97
return eval(ex)
98
99
new_ex = simplify(SymbolParameter(ex.args[1]), ex.args[2:end])
0 commit comments