Changeset ea25bc in git


Ignore:
Timestamp:
Dec 14, 2012, 4:43:54 PM (10 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'cdfcdb8287f66bc6070028082cbbc6eff10e609b')
Children:
f489beab9ee2066d042d018e9e5db927bdfe99a4
Parents:
f51a5bd5a84a0bdc21e8b4b7357a3d1f43bae4e6
Message:
chg: renamed Zpn to Znm
Location:
libpolys
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/coeffs.h

    rf51a5b rea25bc  
    3737  n_Z, /**< only used if HAVE_RINGS is defined: ? */
    3838  n_Zn, /**< only used if HAVE_RINGS is defined: ? */
    39   n_Zpn, /**< only used if HAVE_RINGS is defined: does no longer exist? */
     39  n_Znm, /**< only used if HAVE_RINGS is defined: ? */
    4040  n_Z2m, /**< only used if HAVE_RINGS is defined: ? */
    4141  n_CF /**< ? */
  • libpolys/coeffs/numbers.cc

    rf51a5b rea25bc  
    289289 nrzInitChar,  /* n_Z */
    290290 nrnInitChar,  /* n_Zn */
    291  NULL,         /* n_Zpn */
     291 nrnInitChar,  /* n_Znm */
    292292 nr2mInitChar, /* n_Z2m */
    293293 #else
    294294 NULL,         /* n_Z */
    295295 NULL,         /* n_Zn */
    296  NULL,         /* n_Zpn */
     296 NULL,         /* n_Znm */
    297297 NULL,         /* n_Z2m */
    298298 #endif
  • libpolys/coeffs/test.cc

    rf51a5b rea25bc  
    171171      CASE(n_Z);
    172172      CASE(n_Zn);
    173       CASE(n_Zpn);
     173      CASE(n_Znm);
    174174      CASE(n_Z2m);
    175175      CASE(n_CF);
  • libpolys/polys/monomials/ring.cc

    rf51a5b rea25bc  
    51425142   if (rField_is_Ring_Z(r)) return n_Z;
    51435143   if (rField_is_Ring_ModN(r)) return n_Zn;
    5144    if (rField_is_Ring_PtoM(r)) return n_Zpn;
     5144   if (rField_is_Ring_PtoM(r)) return n_Znm;
    51455145   if (rField_is_Ring_2toM(r)) return  n_Z2m;
    51465146  #endif
  • libpolys/polys/monomials/ring.h

    rf51a5b rea25bc  
    420420
    421421static inline BOOLEAN rField_is_Ring_PtoM(const ring r)
    422 { assume(r != NULL); assume(r->cf != NULL); return (getCoeffType(r->cf) == n_Zpn && nCoeff_is_Ring_PtoM(r->cf) ); }
     422{ assume(r != NULL); assume(r->cf != NULL); return (getCoeffType(r->cf) == n_Znm && nCoeff_is_Ring_PtoM(r->cf) ); }
    423423
    424424static inline BOOLEAN rField_is_Ring_Z(const ring r)
  • libpolys/tests/common.h

    rf51a5b rea25bc  
    5454      CASE(n_Z);
    5555      CASE(n_Zn);
    56       CASE(n_Zpn);
     56      CASE(n_Znm);
    5757      CASE(n_Z2m);
    5858      CASE(n_CF);
Note: See TracChangeset for help on using the changeset viewer.