From bbaf583d3b455980ea3f7cf031dd98f662764fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Thu, 22 Feb 2024 15:38:33 +0100 Subject: [PATCH] Adapt to `hom_power` renaming --- src/ModuleSimpleStructure.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ModuleSimpleStructure.jl b/src/ModuleSimpleStructure.jl index 478655d..cad6610 100644 --- a/src/ModuleSimpleStructure.jl +++ b/src/ModuleSimpleStructure.jl @@ -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) @@ -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) @@ -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)