Changeset 02c42d in git
- Timestamp:
- May 4, 2011, 7:17:53 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- af598e3e1fa791f8f0ca59a43791eddb7a4f6f27
- Parents:
- 211146554165c4e6c498c633261b86cf0969119d
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-04 19:17:53+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:35+01:00
- Location:
- libpolys/polys
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/OBSOLETE_pInitContent.cc
r2111465 r02c42d 90 90 nDelete(&h); 91 91 #ifdef HAVE_FACTORY 92 if ( (n GetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */92 if ( (n_GetChar() == 1) || (n_GetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */ 93 93 { 94 94 singclap_divide_content(ph); … … 398 398 // nDelete(&h); 399 399 //#ifdef HAVE_FACTORY 400 // if ( (n GetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */400 // if ( (n_GetChar() == 1) || (n_GetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */ 401 401 // { 402 402 // pTest(ph); … … 534 534 } 535 535 nDelete(&h); 536 if (n GetChar()==1)536 if (n_GetChar()==1) 537 537 { 538 538 loop … … 639 639 pIter(p); 640 640 } 641 if (n GetChar()==1)641 if (n_GetChar()==1) 642 642 { 643 643 loop -
libpolys/polys/ext_fields/longalg.cc
r2111465 r02c42d 1724 1724 #else 1725 1725 { 1726 int c=ABS(n GetChar());1726 int c=ABS(n_GetChar()); 1727 1727 if (c==1) c=0; 1728 1728 setCharacteristic( c ); -
libpolys/polys/ext_fields/longtrans.cc
r2111465 r02c42d 1865 1865 result->z = napGcd(x->z, y->z); // change from napGcd0 1866 1866 #else 1867 int c=ABS(n GetChar());1867 int c=ABS(n_GetChar()); 1868 1868 if (c==1) c=0; 1869 1869 setCharacteristic( c ); -
libpolys/polys/monomials/p_polys.cc
r2111465 r02c42d 1905 1905 n_Delete(&h,r->cf); 1906 1906 #ifdef HAVE_FACTORY 1907 if ( (n GetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */1907 if ( (n_GetChar(r) == 1) || (n_GetChar(r) < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */ 1908 1908 { 1909 1909 singclap_divide_content(ph); -
libpolys/polys/monomials/ring.cc
r2111465 r02c42d 128 128 //------------ global variables related to factory ----------------- 129 129 #ifdef HAVE_FACTORY 130 //int c=ABS(n GetChar());130 //int c=ABS(n_GetChar()); 131 131 //if (c==1) c=0; 132 132 //setCharacteristic( c );
Note: See TracChangeset
for help on using the changeset viewer.