Changeset 38bf7d8 in git
- Timestamp:
- Feb 3, 2003, 3:13:52 PM (21 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- baf9c4209de90863a172b58864062678c2264e40
- Parents:
- b8880b669e303702be369d39270134dbd07dbd87
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ChangeLog.plural
rb8880b6 r38bf7d8 22 22 Print(p) at gr_kstd2.cc:877 is commented out 23 23 24 23.01.03 25 Updated multiplication: now we search for the shortest path. 26 Here is an old code : 27 for (k=2;k<=a;k++) 28 { 29 t=MATELEM(cMT,k,1); 30 if (t==NULL) /* not computed yet */ 31 { 32 t=p_Copy(MATELEM(cMT,k-1,1),r); 33 t = nc_mm_Mult_p(y,t,r); 34 MATELEM(cMT,k,1) = t; 35 // omCheckAddr(cMT->m); 36 } 37 t=NULL; 38 } 39 for (m=2;m<=b;m++) 40 { 41 t=MATELEM(cMT,a,m); 42 if (t==NULL) //not computed yet 43 { 44 t=p_Copy(MATELEM(cMT,a,m-1),r); 45 t = nc_p_Mult_mm(t,x,r); 46 MATELEM(cMT,a,m) = t; 47 // omCheckAddr(cMT->m); 48 } 49 t=NULL; 50 } 24 23.01.03- 25 31.01.03 26 Updated multiplication: 27 now we search for the shortest path with nc_uu_Mult_ww_horvert 28 An old code is called nc_uu_Mult_ww_vert, is used by default. 51 29 52 30 Further on, we should compute metrics. … … 55 33 matrix ncMatPrint(int a, int b, ring r, int metric) 56 34 /* returns matrix with the info on noncomm multiplication */ 35 Before these changes, we copied the exec to Singular.Jan. 57 36 58 Before these changes, we copied the exec to Singular.Jan. 37 31.01.03 38 DONE syz, nres, mres; 39 small problems with minres. 40 41
Note: See TracChangeset
for help on using the changeset viewer.