Changeset 1f190d7 in git
- Timestamp:
- Mar 5, 2010, 11:35:50 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- c57a83edd49526195f04ddf602fca071cafed3b7
- Parents:
- fc46db6c6caaf5753ae95943e23d432236bb7b6c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/jacobson.lib
rfc46db r1f190d7 873 873 } 874 874 875 876 877 878 875 for(i=nz+1; i<=size(STD_EX); i++ ) 879 876 {if( leadcoef(STD[i-nz])!=leadcoef(STD_EX[i]) ) {STD[i-nz]=leadcoef(STD_EX[i])*STD[i-nz];} … … 963 960 } 964 961 965 966 ///////////////////////// check whether the alg termined ///////////////// 962 ///////////////////////// check whether the alg terminated ///////////////// 967 963 if(size(COMPARE)>=3) 968 964 { … … 1143 1139 matrix m[3][4] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3, (x+s)^2, x*s; 1144 1140 1145 // this one is quite nasty and time consumi ng1141 // this one is quite nasty and time consumig 1146 1142 matrix m[3][4] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3, (x+s)^2, x*s,x,x^2,x^3,s; 1147 1143 … … 1183 1179 print(J[1]*m*J[3]-J[2]); 1184 1180 1181 // yet another example from the paper, also Middeke 1182 ring w = (0,y),(x,d),Dp; 1183 def W=nc_algebra(1,1); 1184 setring W; 1185 matrix m[2][2]=y^2*d^2+d+1, 1, x*d, x^2*d^2+d+y; 1186 list J=jacobson(m,0); 1187 print(J[1]*m*J[3]); print(J[2]); print(J[1]); print(J[3]); 1188 print(J[1]*m*J[3]-J[2]); 1189 1190 1185 1191 */
Note: See TracChangeset
for help on using the changeset viewer.