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
On line 14 of periodicline.jl there appears to be a typo, leading to a call to domain(f::AbstractVector) which is not defined.
function hilbert(S::Space{<:PeriodicLine},f::AbstractVector,z::Number)
S2=setdomain(S,Circle())
hilbert(S2,f,mappoint(domain(f),Circle(),z))-hilbert(S2,f,-1)
end
I think the last line should read hilbert(S2,f,mappoint(domain(S),Circle(),z))-hilbert(S2,f,-1)?
A similar issue occurs on line 24. I would be happy to put together a pull request to fix this.
The text was updated successfully, but these errors were encountered:
On line 14 of periodicline.jl there appears to be a typo, leading to a call to domain(f::AbstractVector) which is not defined.
I think the last line should read
hilbert(S2,f,mappoint(domain(S),Circle(),z))-hilbert(S2,f,-1)
?A similar issue occurs on line 24. I would be happy to put together a pull request to fix this.
The text was updated successfully, but these errors were encountered: