Changeset 38bf7d8 in git


Ignore:
Timestamp:
Feb 3, 2003, 3:13:52 PM (21 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
baf9c4209de90863a172b58864062678c2264e40
Parents:
b8880b669e303702be369d39270134dbd07dbd87
Message:
*levandov: Plural progress


git-svn-id: file:///usr/local/Singular/svn/trunk@6467 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ChangeLog.plural

    rb8880b6 r38bf7d8  
    2222        Print(p) at gr_kstd2.cc:877 is commented out
    2323       
    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   }
     2423.01.03-
     2531.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.
    5129       
    5230        Further on, we should compute metrics.
     
    5533        matrix ncMatPrint(int a, int b, ring r, int metric)
    5634        /* returns matrix with the info on noncomm multiplication */
     35Before these changes, we copied the exec to Singular.Jan.
    5736
    58 Before these changes, we copied the exec to Singular.Jan.
     3731.01.03
     38        DONE syz, nres, mres;
     39        small problems with minres.
     40
     41
Note: See TracChangeset for help on using the changeset viewer.