Skip to content

Commit

Permalink
use SchreierExtensionHomomorphism instead of Cached one
Browse files Browse the repository at this point in the history
  • Loading branch information
kalmarek committed Apr 23, 2024
1 parent b193240 commit 0d16f75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/group_action_error.jl
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,6 @@ function check_group_action(
basis::StarAlgebras.ExplicitBasis;
full_check = false,
)
ehom = CachedExtensionHomomorphism(G, act, basis; precompute = false)
ehom = SchreierExtensionHomomorphism(G, act, basis; memoize = false)
return check_group_action(G, ehom; full_check = full_check)
end
8 changes: 4 additions & 4 deletions src/sa_basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ function symmetry_adapted_basis(
semisimple = false,
)
tbl = CharacterTable(S, G)
ehom = CachedExtensionHomomorphism(
ehom = SchreierExtensionHomomorphism(
parent(tbl),
action,
basis;
precompute = true,
memoize = true,
)
check_group_action(G, ehom; full_check = false)
return symmetry_adapted_basis(
Expand All @@ -161,11 +161,11 @@ function symmetry_adapted_basis(
semisimple = false,
)
tbl = CharacterTable(S, G)
ehom = CachedExtensionHomomorphism(
ehom = SchreierExtensionHomomorphism(
parent(tbl),
action,
basis;
precompute = true,
memoize = true,
)
check_group_action(G, ehom; full_check = false)
return symmetry_adapted_basis(T, tbl, ehom; semisimple = semisimple)
Expand Down
2 changes: 1 addition & 1 deletion src/wedderburn_decomposition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function WedderburnDecomposition(
tbl = CharacterTable(S, G)
invariants = Threads.@spawn invariant_vectors(tbl, action, basis_full)

ehom = CachedExtensionHomomorphism(G, action, basis_half; precompute = true)
ehom = SchreierExtensionHomomorphism(G, action, basis_half; memoize = true)
check_group_action(G, ehom; full_check = false)

Uπs = Threads.@spawn symmetry_adapted_basis(
Expand Down

0 comments on commit 0d16f75

Please sign in to comment.