Changeset 2f3764 in git for libpolys/coeffs/coeffs.h


Ignore:
Timestamp:
Feb 23, 2012, 5:17:24 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9a78ebefab412005398f3ada5901ac617d94e649
Parents:
02fe5fbd39da06e8eb01f3f24ef8e94a6334fcce
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 17:17:24+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 20:35:10+01:00
Message:
n_Init and p_ISet take a "long" (instead of "int") argument
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/coeffs.h

    r02fe5f r2f3764  
    113113   
    114114   /// init with an integer
    115    number  (*cfInit)(int i,const coeffs r);
     115   number  (*cfInit)(long i,const coeffs r);
    116116
    117117   /// init with a GMP integer
     
    404404
    405405/// a number representing i in the given coeff field/ring r
    406 static inline number n_Init(int i,       const coeffs r)
     406static inline number n_Init(long i,       const coeffs r)
    407407{ assume(r != NULL); assume(r->cfInit!=NULL); return r->cfInit(i,r); }
    408408
Note: See TracChangeset for help on using the changeset viewer.