Changeset 3c3b36 in git for Singular/LIB/gitfan.lib


Ignore:
Timestamp:
Feb 7, 2020, 2:22:32 PM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
f21220a704e0a506e9a3b7af28f07c97ef165097
Parents:
61d9a4b5580e0b50dc3d903b076ba95bbe1328f6
Message:
fix: avoid bigintmat+int (gfanlib.lib)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/gitfan.lib

    r61d9a4 r3c3b36  
    19641964  list OC = orbitCones(AF,Q);
    19651965  bigintmat w[1][nrows(Q)];
    1966   for(int i = 1; i <= nrows(Q); i++){
    1967     w = w + Q[1..nrows(Q),i];
     1966  int j;
     1967  for(int i = 1; i <= nrows(Q); i++)
     1968  {
     1969    for(j=1;j<=nrows(Q);j++)
     1970    {
     1971      w[1,j]= w[1,j] + Q[1,i];
     1972    }
    19681973  }
    19691974  GITcone(OC,w);
Note: See TracChangeset for help on using the changeset viewer.