Ignore:
Timestamp:
Feb 17, 2012, 11:35:47 AM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
26acab557e4ad73e2c8ba02fa1ad998773365fff66e25f2bbb3969a1769c9710fee12d7ca6262dd7
Parents:
46eef0a30be9c81870e8f7f971a5e0748c9e8fcd
Message:
chg: introduce n_ParDeg for pardeg(number)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/ext_fields/transext.cc

    r46eef0 r48a41a  
    12811281#endif
    12821282
     1283int ntParDeg(number a, const coeffs cf)
     1284{
     1285  if (IS0(a)) return -1;
     1286  fraction fa = (fraction)a;
     1287  return cf->extRing->pFDeg(NUM(fa),cf->extRing);
     1288}
     1289
    12831290BOOLEAN ntInitChar(coeffs cf, void * infoStruct)
    12841291{
     
    13491356  cf->convSingNFactoryN =ntConvSingNFactoryN;
    13501357#endif
     1358  cf->cfParDeg = ntParDeg;
    13511359
    13521360  return FALSE;
Note: See TracChangeset for help on using the changeset viewer.