From 2ee4ebbb91debd611eb60de011354da45ec773ec Mon Sep 17 00:00:00 2001 From: Michael Reed <18372368+chakravala@users.noreply.github.com> Date: Sat, 17 Jun 2023 05:50:01 -0400 Subject: [PATCH] deprecated conflicting method --- Project.toml | 2 +- src/basis.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 2b2b859..e191c1a 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/src/basis.jl b/src/basis.jl index 5135510..561b372 100644 --- a/src/basis.jl +++ b/src/basis.jl @@ -208,7 +208,7 @@ 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]) @@ -216,7 +216,7 @@ end 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)}()