Skip to content

Commit

Permalink
deprecated conflicting method
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Jun 17, 2023
1 parent 569c792 commit 2ee4ebb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DirectSum"
uuid = "22fd7b30-a8c0-5bf2-aabe-97783860d07c"
authors = ["Michael Reed"]
version = "0.8.3"
version = "0.8.4"

[deps]
ComputedFieldTypes = "459fdd68-db75-56b8-8c15-d717a790f88e"
Expand Down
4 changes: 2 additions & 2 deletions src/basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ macro Λ_str(str)
Basis(str)
end

@pure function Base.getproperty::typeof(Λ),v::Symbol)
#=@pure function Base.getproperty(λ::typeof(Basis),v::Symbol)
v ∈ (:body,:var) && (return getfield(λ,v))
V = string(v)
N = parse(Int,V[2])
C = V[1]∉('D','C') ? 0 : 1
length(V) < 5 && (V *= join(zeros(Int,5-length(V))))
S = UInt(parse(Int,V[5:end]))
getalgebra(N,doc2m(parse(Int,V[3]),parse(Int,V[4]),C),C>0 ? flip_sig(N,S) : S)
end
end=#

# Allocating thread-safe $(2^n)×Submanifold{G,V}
const Λ0 = Λ{Submanifold(0)}()
Expand Down

2 comments on commit 2ee4ebb

@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/85775

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 v0.8.4 -m "<description of version>" 2ee4ebbb91debd611eb60de011354da45ec773ec
git push origin v0.8.4

Please sign in to comment.