Skip to content
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

Changing affordable_real and related tests #86

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion test/sa_basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ end
for b in sa_basisR
if issimple(b)
@test multiplicity(b) == size(b, 1) ||
2 * multiplicity(b) == size(b, 1)
2 * multiplicity(b) == size(b, 1) ||
4 * multiplicity(b) == size(b, 1)
# the first condiditon doesn't hold for realified characters;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should check the Frobenius Schur indicator here and test exactly that issimple really does what we want

else
rk, res = divrem(size(b, 1), multiplicity(b))
Expand Down