Changeset e044528 in git
- Timestamp:
- Sep 8, 2011, 9:16:31 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'cdfcdb8287f66bc6070028082cbbc6eff10e609b')
- Children:
- d02fff666539bb449e45ae13851d7d81e05c75bc
- Parents:
- f7aa4c7c61207b077fe954f2e563ca261edcc109
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-08 21:16:31+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:37+01:00
- Location:
- kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kpolys.cc
rf7aa4c7 re044528 1 #include "mod2.h" 2 3 #include <omalloc/omalloc.h> 4 #include <misc/auxiliary.h> 5 6 #include "polys.h" 7 8 1 9 /* Returns TRUE if 2 10 * LM(p) | LM(lcm) … … 8 16 * LE(p2, j) != LE(lcm, j) ==> LCM(p2, p) != lcm 9 17 */ 10 BOOLEAN pCompareChain (poly p,poly p1,poly p2,poly lcm, const ring R = currRing)18 BOOLEAN pCompareChain (poly p,poly p1,poly p2,poly lcm, const ring R) 11 19 { 12 20 int k, j; … … 61 69 } 62 70 #ifdef HAVE_RATGRING 63 BOOLEAN pCompareChainPart (poly p,poly p1,poly p2,poly lcm, 64 const ring R = currRing) 71 BOOLEAN pCompareChainPart (poly p,poly p1,poly p2,poly lcm, const ring R) 65 72 { 66 73 int k, j; -
kernel/makefile
rf7aa4c7 re044528 73 73 fast_maps.cc \ 74 74 fglmzero.cc fglmvec.cc fglmgauss.cc fglmhom.cc fglmcomb.cc \ 75 kspoly.cc \75 kspoly.cc kpolys.cc \ 76 76 semic.cc \ 77 77 syz.cc syz0.cc syz1.cc syz2.cc syz3.cc\ -
kernel/polys.h
rf7aa4c7 re044528 351 351 352 352 /*-----------specials for spoly-computations--------------*/ 353 BOOLEAN pCompareChain (poly p,poly p1,poly p2,poly lcm); 354 BOOLEAN pCompareChainPart (poly p,poly p1,poly p2,poly lcm); 353 354 /// Returns TRUE if 355 /// * LM(p) | LM(lcm) 356 /// * LC(p) | LC(lcm) only if ring 357 /// * Exists i, j: 358 /// * LE(p, i) != LE(lcm, i) 359 /// * LE(p1, i) != LE(lcm, i) ==> LCM(p1, p) != lcm 360 /// * LE(p, j) != LE(lcm, j) 361 /// * LE(p2, j) != LE(lcm, j) ==> LCM(p2, p) != lcm 362 BOOLEAN pCompareChain (poly p, poly p1, poly p2, poly lcm, const ring R = currRing); 363 355 364 #define pEqualPolys(p1,p2) p_EqualPolys(p1,p2,currRing) 365 356 366 357 367 -
kernel/ratgring.h
rf7aa4c7 re044528 121 121 BOOLEAN p_LmIsConstantCompRat(const poly p, const ring r); 122 122 123 BOOLEAN pCompareChainPart (poly p,poly p1,poly p2,poly lcm); 124 123 125 #endif /* HAVE_PLURAL */ 124 126 #endif
Note: See TracChangeset
for help on using the changeset viewer.