Skip to content

Commit

Permalink
fixed REDUCE precompilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Feb 16, 2024
1 parent 1c056b5 commit 18fe7c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
environment:
matrix:
- julia_version: 1
- julia_version: 1.1
- julia_version: 1.2
- julia_version: 1.3
- julia_version: 1.4
- julia_version: 1.5
- julia_version: 1.6
- julia_version: 1.10
- julia_version: nightly

platform:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Fatou"
uuid = "5f923234-c850-556d-bb4f-28324fa1959a"
authors = ["Michael Reed"]
version = "1.2.0"
version = "1.2.1"

[deps]
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Expand All @@ -12,7 +12,7 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"

[compat]
julia = "1"
Reduce = "1.2"
Reduce = "1.2.13"
Requires = "1"
SyntaxTree = "1"
ColorSchemes = "3"
Expand Down
4 changes: 3 additions & 1 deletion src/Fatou.jl
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function __init__()
function orbit(K::Define{FT,QT,CT,M,N,P,D,B},Z0::Complex{Float64}) where {FT,QT,CT,M,N,P,D,B}
V = Grassmann.Manifold(B)
z0 = Grassmann.Couple{V,B}(Z0)
M ? (z = K.seed) : (z = P ? Grassmann.Couple{V,B}(plane(Z0)) : z0)
M ? (z = Grassmann.Couple{V,B}(K.seed)) : (z = P ? Grassmann.Couple{V,B}(plane(Z0)) : z0)
zn = 0x0000
while (N ? (Grassmann.value(K.Q(z,z0))::Float64>K.ϵ)::Bool : (Grassmann.value(K.Q(z,z0))::Float64<K.ϵ))::Bool && K.N>zn
z = K.F(z,z0)::Grassmann.Couple{V,B,Float64}
Expand All @@ -400,4 +400,6 @@ function __init__()
end
end

Reduce.stop()

end # module

2 comments on commit 18fe7c9

@chakravala
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/101022

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.1 -m "<description of version>" 18fe7c92bf89b713bed245dc9c9ca2ea73df4e7e
git push origin v1.2.1

Please sign in to comment.