Changeset 975db18 in git for libpolys/polys
- Timestamp:
- Jul 17, 2012, 9:30:21 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- de883715f1ef141b4db21091c8e3dafa32942d5b
- Parents:
- 98474f69bc5c570dd7cb85f5f8a0b2164abccb91
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-07-17 21:30:21+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-07-17 21:33:55+02:00
- Location:
- libpolys/polys
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/Makefile.am
r98474f r975db18 42 42 nc/old.gring.cc 43 43 44 LIBPOLYSHEADERS = monomials/ring.h monomials/monomials.h \ 44 LIBPOLYSHEADERS = monomials/ring.h monomials/monomials.h \ 45 monomials/p_polys.h monomials/maps.h PolyEnumerator.h prCopy.h \ 45 46 nc/nc.h nc/sca.h nc/summator.h nc/ncSAFormula.h nc/ncSACache.h nc/ncSAMult.h nc/gb_hack.h \ 46 47 operations/pShallowCopyDelete.h \ 47 48 templates/p_Procs.h templates/p_MemAdd.h templates/p_MemCmp.h \ 48 monomials/p_polys.h monomials/maps.h prCopy.h \49 49 kbuckets.h sbuckets.h simpleideals.h weight.h matpol.h \ 50 50 sparsmat.h clapsing.h clapconv.h coeffrings.h \ -
libpolys/polys/monomials/p_polys.cc
r98474f r975db18 21 21 #include <coeffs/longrat.h> // ??? 22 22 #include <coeffs/ffields.h> 23 24 #include <polys/PolyEnumerator.h> 23 25 24 26 #define TRANSEXT_PRIVATES … … 2021 2023 void p_Content(poly ph, const ring r) 2022 2024 { 2025 #if 0 2026 if( ph != NULL ) 2027 { 2028 CPolyCoeffsEnumerator itr(ph); 2029 n_ClearContent(itr, r->cf); 2030 // return; 2031 } 2032 #endif 2033 2034 2023 2035 #ifdef HAVE_RINGS 2024 2036 if (rField_is_Ring(r)) … … 2428 2440 { 2429 2441 poly start=ph; 2442 2443 #if 0 2444 if( ph != NULL ) 2445 { 2446 CPolyCoeffsEnumerator itr(ph); 2447 n_ClearDenominators(itr, r->cf); 2448 // return start; 2449 } 2450 #endif 2451 2430 2452 number d, h; 2431 2453 poly p; … … 2552 2574 void p_Cleardenom_n(poly ph,const ring r,number &c) 2553 2575 { 2576 #if 0 2577 if( ph != NULL ) 2578 { 2579 CPolyCoeffsEnumerator itr(ph); 2580 n_ClearDenominators(itr, c, r->cf); 2581 // return; 2582 } 2583 #endif 2584 2554 2585 number d, h; 2555 2586 poly p;
Note: See TracChangeset
for help on using the changeset viewer.