Ignore:
Timestamp:
Aug 16, 2016, 10:47:22 AM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
f8735a6f0fe51d2c1c11121c35982563485c2b25
Parents:
3238c13e1d0da1d4c477894d1b70583f86f828f9
Message:
Singular_4_1: new names; Ring. Matrix, Number, construction cf[x], ....
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/ring.cc

    r3238c1 re54c6ee  
    146146  return rDefault(cf,N,n,ord_size,ord,block0,block1,wvhdl);
    147147}
    148 ring   rDefault(const coeffs cf, int N, char **n)
     148ring rDefault(const coeffs cf, int N, char **n,  const rRingOrder_t o)
    149149{
    150150  assume( cf != NULL);
    151   /*order: lp,0*/
     151  /*order: o=lp,0*/
    152152  int *order = (int *) omAlloc(2* sizeof(int));
    153153  int *block0 = (int *)omAlloc0(2 * sizeof(int));
    154154  int *block1 = (int *)omAlloc0(2 * sizeof(int));
    155   /* ringorder dp for the first block: var 1..N */
    156   order[0]  = ringorder_lp;
     155  /* ringorder o=lp for the first block: var 1..N */
     156  order[0]  = o;
    157157  block0[0] = 1;
    158158  block1[0] = N;
Note: See TracChangeset for help on using the changeset viewer.