Changeset 26c66ae in git


Ignore:
Timestamp:
May 3, 2011, 12:16:01 PM (12 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
4ffb46760574267a3b7e88ba8caa65685be9bf2e
Parents:
ebc18829d97405bd491f08e4e73e1fe3f961b5f1
git-author:
Frank Seelisch <seelisch@mathematik.uni-kl.de>2011-05-03 12:16:01+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:33+01:00
Message:
use n_Ext, only, for any type of extensions (after discussion with Hans)
Location:
libpolys
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/coeffs.h

    rebc188 r26c66ae  
    2222  n_GF,
    2323  n_long_R,
    24   n_Zp_a,
    25   n_Q_a,
     24  n_Ext,  // used for all extensions (of Zp, of Q AND OF EXTENSIONS THEREOF)
    2625  n_long_C,
    2726  // only used if HAVE_RINGS is defined
  • libpolys/coeffs/test.cc

    rebc188 r26c66ae  
    155155      CASE(n_GF);
    156156      CASE(n_long_R);
    157       CASE(n_Zp_a);
    158       CASE(n_Q_a);
     157      CASE(n_Ext);
    159158      CASE(n_long_C);
    160159      CASE(n_Z);
     
    363362#endif
    364363 
    365   // polynomial rings needed for: n_Zp_a, n_Q_a ?
     364  // polynomial rings needed for: n_Ext !
    366365 
    367366  return c;
  • libpolys/polys/monomials/ring.cc

    rebc188 r26c66ae  
    48774877  if (rField_is_GF(r))     return n_GF;
    48784878  if (rField_is_long_R(r)) return n_long_R;
    4879   if (rField_is_Zp_a(r))   return n_Zp_a;
    4880   if (rField_is_Q_a(r))    return n_Q_a;
     4879  if (rField_is_Zp_a(r))   return n_Ext;
     4880  if (rField_is_Q_a(r))    return n_Ext;
    48814881  if (rField_is_long_C(r)) return n_long_C;
    48824882  #ifdef HAVE_RINGS
  • libpolys/tests/coeffs_test.h

    rebc188 r26c66ae  
    466466
    467467   
    468    // polynomial rings needed for extentions: n_Zp_a, n_Q_a!
     468   // polynomial rings needed for extentions: n_Ext !
    469469   
    470470};
  • libpolys/tests/common.h

    rebc188 r26c66ae  
    3333      CASE(n_GF);
    3434      CASE(n_long_R);
    35       CASE(n_Zp_a);
    36       CASE(n_Q_a);
     35      CASE(n_Ext);
    3736      CASE(n_long_C);
    3837      CASE(n_Z);
Note: See TracChangeset for help on using the changeset viewer.