SciML / FunctionProperties.jl

A SciML symbolic-numeric compiler tool for investigating functions in order to perform optimizations
MIT License
9 stars 0 forks source link

Handling broadcast #11

Closed ChrisRackauckas closed 5 months ago

ChrisRackauckas commented 5 months ago
using FunctionProperties, Test
function f(x)
    x .+ x
end
x = [1.0]
@test_broken !FunctionProperties.hasbranching(f,x)