Changeset 6c084af in git for libpolys/coeffs/shortfl.cc


Ignore:
Timestamp:
Apr 26, 2011, 10:40:57 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
b27c0524d725542db31ecb0c95c603a31a1d1faa
Parents:
3dbe0bfdeb52860218f39475970a26f9e1e01e78
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-26 22:40:57+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:28+01:00
Message:
ADD: CoeffWrite for n_R (shortfl.cc)
ADD: test function pointers before calling in all n_*(... const coeff r)
CHG: renamed ndIsZeroDivisor -> n_IsZeroDivisor
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/shortfl.cc

    r3dbe0bf r6c084af  
    4343{
    4444  return nf(n).F();
     45}
     46
     47
     48void    nrCoeffWrite  (const coeffs r)
     49{
     50  assume( getCoeffType(r) == ID );
     51  PrintS("//   characteristic : 0 (real)\n");  /* R */
    4552}
    4653
     
    570577  n->cfRead = nrRead;
    571578  n->cfPower = nrPower;
    572   n->cfSetMap=nrSetMap;
     579  n->cfSetMap = nrSetMap;
     580  n->cfCoeffWrite  = nrCoeffWrite;
     581
    573582    /* nName= ndName; */
    574583    /*nSize  = ndSize;*/
Note: See TracChangeset for help on using the changeset viewer.