-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update to StarAlgebras.jl-0.3 #75
Conversation
) | ||
return invariant_vectors(parent(tbl), act, basis) | ||
end | ||
|
||
function invariant_vectors( | ||
G::Group, | ||
act::ByPermutations, | ||
basis::StarAlgebras.Basis{T,I}, | ||
basis::StarAlgebras.ExplicitBasis{T,I}, | ||
) where {T,I} | ||
tovisit = trues(length(basis)) | ||
invariant_vs = Vector{SparseVector{Rational{Int},I}}() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kalmarek The line below fails because eachindex(basis)
is not defined for FixedBasis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was broken by JuliaAlgebra/StarAlgebras.jl@7f17590 I believe
Merging this one first was the right call |
This was less painful than expected ;)
CC: @blegat