Skip to content

Commit

Permalink
Adapt to #4052
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Aug 30, 2024
1 parent 3487ed9 commit 5919c76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion experimental/LieAlgebras/src/RootSystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ function dominant_character(R::RootSystem, hw::WeightLatticeElem)
(
WeightLatticeElem(
R,
transpose(first(intersect(elements(o)::Vector{ZZMatrix}, pos_roots_w_coeffs))),
transpose(first(intersect(elements(o), pos_roots_w_coeffs))),
),
length(o),
) for o in O
Expand Down
2 changes: 1 addition & 1 deletion src/Groups/gsets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ end

acting_domain(Omega::GSet) = acting_group(Omega)

Base.length(Omega::GSetByElements) = length(elements(Omega))::Int
Base.length(Omega::GSetByElements) = length(elements(Omega))
Base.length(::Type{T}, Omega::GSetByElements) where T <: IntegerUnion = T(length(elements(Omega)))

representative(Omega::GSetByElements) = first(Omega.seeds)
Expand Down

0 comments on commit 5919c76

Please sign in to comment.