Changeset a06b98 in git for libpolys/polys/monomials


Ignore:
Timestamp:
Sep 30, 2011, 3:53:00 PM (13 years ago)
Author:
Burcin Erocal <burcin@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
b7cad8c697d69578f1f58d6dff25be0213e35568
Parents:
8476c2171201ca239a4e71474b2157cfcfee7d30
git-author:
Burcin Erocal <burcin@erocal.org>2011-09-30 15:53:00+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:52+01:00
Message:
Remove float_len{,2} members from rings. They are in coeffs now.
Location:
libpolys/polys/monomials
Files:
2 edited

Legend:

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

    r8476c2 ra06b98  
    13091309  //memset: res->ref=0; /* reference counter to the ring */
    13101310
    1311   res->float_len=r->float_len; /* additional char-flags */
    1312   res->float_len2=r->float_len2; /* additional char-flags */
    1313 
    13141311  res->N=rVar(r);      /* number of vars */
    13151312  res->OrdSgn=r->OrdSgn; /* 1 for polynomial rings, -1 otherwise */
     
    14561453  //memset: res->ref=0; /* reference counter to the ring */
    14571454
    1458   res->float_len=r->float_len; /* additional char-flags */
    1459   res->float_len2=r->float_len2; /* additional char-flags */
    1460 
    14611455  res->N=rVar(r);      /* number of vars */
    14621456  res->OrdSgn=r->OrdSgn; /* 1 for polynomial rings, -1 otherwise */
     
    16211615
    16221616  if ((r1->cf->type != r2->cf->type)
    1623   || (r1->float_len != r2->float_len)
    1624   || (r1->float_len2 != r2->float_len2)
    16251617  || (rVar(r1) != rVar(r2))
    16261618  || (r1->OrdSgn != r2->OrdSgn)
     
    17131705
    17141706  if ((r1->cf->type != r2->cf->type)
    1715   || (r1->float_len != r2->float_len)
    1716   || (r1->float_len2 != r2->float_len2)
    17171707  || (rVar(r1) != rVar(r2))
    17181708  || (r1->OrdSgn != r2->OrdSgn)
  • libpolys/polys/monomials/ring.h

    r8476c2 ra06b98  
    243243//  int        ch;  /* characteristic, rInit */
    244244  int        ref; /* reference counter to the ring, interpreter */
    245 
    246   short      float_len; /* additional char-flags, rInit */
    247   short      float_len2; /* additional char-flags, rInit */
    248245
    249246  short      N;      /* number of vars, rInit */
Note: See TracChangeset for help on using the changeset viewer.