You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried running Fatou with FloatTracker. Adding support for complex numbers works well, but Fatou explicitly checks for something of type Complex{Float64}, which we cannot handle. Problematic code is in Fatou.jl:327:
323functionorbit(K::Define{FT,QT,CT,M,N,P,D,im},z0::Complex{Float64}) where {FT,QT,CT,M,N,P,D}
324 M ? (z = K.seed) : (z = P ?plane(z0) : z0)
325 zn =0x0000326while (N ? (K.Q(z,z0)::Float64>K.ϵ)::Bool: (K.Q(z,z0)::Float64<K.ϵ))::Bool&& K.N>zn
327 z = K.F(z,z0)::Complex{Float64}328 zn+=0x0001329end; #end330# return the normalized argument of z or iteration count331return (zn::UInt16,(D ?disk(z) : z)::Complex{Float64})
332end
I'm going to give up on this for now. It could be an interesting library to fuzz, but we'd have to work out how to make it past this block.
https://github.com/chakravala/Fatou.jl
The text was updated successfully, but these errors were encountered: