Skip to content

Commit

Permalink
Adapt to hom_power renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Feb 22, 2024
1 parent 15651fb commit bbaf583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ModuleSimpleStructure.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function isomorphic_module_with_simple_structure(V::LieAlgebraModule)
return U, V_to_U
end
U = exterior_power(C, k)
V_to_U = hom_power(V, U, B_to_C)
V_to_U = hom(V, U, B_to_C)
if is_direct_sum(C)
Ds = base_modules(C)
m = length(Ds)
Expand Down Expand Up @@ -203,7 +203,7 @@ function isomorphic_module_with_simple_structure(V::LieAlgebraModule)
return U, V_to_U
end
U = symmetric_power(C, k)
V_to_U = hom_power(V, U, B_to_C)
V_to_U = hom(V, U, B_to_C)
if is_direct_sum(C)
Ds = base_modules(C)
m = length(Ds)
Expand Down Expand Up @@ -263,7 +263,7 @@ function isomorphic_module_with_simple_structure(V::LieAlgebraModule)
return U, V_to_U
end
U = tensor_power(C, k)
V_to_U = hom_power(V, U, B_to_C)
V_to_U = hom(V, U, B_to_C)
if is_direct_sum(C)
Ds = base_modules(C)
m = length(Ds)
Expand Down

0 comments on commit bbaf583

Please sign in to comment.