Changeset 26c66ae in git
- Timestamp:
- May 3, 2011, 12:16:01 PM (12 years ago)
- 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
- Location:
- libpolys
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/coeffs.h
rebc188 r26c66ae 22 22 n_GF, 23 23 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) 26 25 n_long_C, 27 26 // only used if HAVE_RINGS is defined -
libpolys/coeffs/test.cc
rebc188 r26c66ae 155 155 CASE(n_GF); 156 156 CASE(n_long_R); 157 CASE(n_Zp_a); 158 CASE(n_Q_a); 157 CASE(n_Ext); 159 158 CASE(n_long_C); 160 159 CASE(n_Z); … … 363 362 #endif 364 363 365 // polynomial rings needed for: n_ Zp_a, n_Q_a ?364 // polynomial rings needed for: n_Ext ! 366 365 367 366 return c; -
libpolys/polys/monomials/ring.cc
rebc188 r26c66ae 4877 4877 if (rField_is_GF(r)) return n_GF; 4878 4878 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; 4881 4881 if (rField_is_long_C(r)) return n_long_C; 4882 4882 #ifdef HAVE_RINGS -
libpolys/tests/coeffs_test.h
rebc188 r26c66ae 466 466 467 467 468 // polynomial rings needed for extentions: n_ Zp_a, n_Q_a!468 // polynomial rings needed for extentions: n_Ext ! 469 469 470 470 }; -
libpolys/tests/common.h
rebc188 r26c66ae 33 33 CASE(n_GF); 34 34 CASE(n_long_R); 35 CASE(n_Zp_a); 36 CASE(n_Q_a); 35 CASE(n_Ext); 37 36 CASE(n_long_C); 38 37 CASE(n_Z);
Note: See TracChangeset
for help on using the changeset viewer.