diff --git a/lib/algebra.gi b/lib/algebra.gi index 69f08fef37..c17c6557ff 100644 --- a/lib/algebra.gi +++ b/lib/algebra.gi @@ -2757,6 +2757,9 @@ InstallMethod( RadicalOfAlgebra, M:=[]; for j in [1..n] do col:= Coefficients( BA, bv[i] * bv[j] ); + if not IsMutable( col ) then + col:= ShallowCopy( col ); + fi; col[n+1]:= Zero( F ); Add( M, col ); od; diff --git a/tst/testinstall/algsc.tst b/tst/testinstall/algsc.tst index 12c6292268..a3dc908a8b 100644 --- a/tst/testinstall/algsc.tst +++ b/tst/testinstall/algsc.tst @@ -675,6 +675,15 @@ gap> c:= Centre( t ); gap> c = t; true +############################################################################# +## +## Some bugfixes +## +gap> a:= Algebra( Rationals, [ [ [ 0, 0 ], [ 1, 0 ] ] ] );; +gap> sc:= Image( IsomorphismSCAlgebra( a ) );; +gap> Dimension( RadicalOfAlgebra( sc ) ); +1 + ############################################################################# gap> STOP_TEST( "algsc.tst", 1);