Changeset 76fead in git
- Timestamp:
- Jul 18, 2011, 5:45:16 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- c6474a786b054e209421ddeaf8aa820904161457
- Parents:
- c15fb027c86f5b034e29b00b2a1d48cc95720689
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-18 17:45:16+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:56+01:00
- Location:
- libpolys/polys
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/mod_raw.cc
rc15fb0 r76fead 84 84 } 85 85 86 if( (strncmp(buf, &mach_o_module[0], 4)==0)) /* Mach-O bundle */86 if( (strncmp(buf, (const char *)mach_O, 4)==0)) /* Mach-O bundle */ 87 87 { 88 88 LT = LT_MACH_O; -
libpolys/polys/monomials/p_polys.cc
rc15fb0 r76fead 3775 3775 #include <polys/templates/p_Delete__T.cc> 3776 3776 3777 #ifdef HAVE_RINGS3778 /* TRUE iff LT(f) | LT(g) */3779 BOOLEAN p_DivisibleByRingCase(poly f, poly g, const ring r)3780 {3781 int exponent;3782 for(int i = (int)r->N; i; i--)3783 {3784 exponent = p_GetExp(g, i, r) - p_GetExp(f, i, r);3785 if (exponent < 0) return FALSE;3786 }3787 return n_DivBy(p_GetCoeff(g,r), p_GetCoeff(f,r),r->cf);3788 }3789 #endif -
libpolys/polys/nc/old.gring.cc
rc15fb0 r76fead 1591 1591 C2=n_Copy(C2, r); 1592 1592 } 1593 n Delete(&C);1593 n_Delete(&C,r); 1594 1594 M1=p_Mult_nn(M1,C2,r); 1595 1595 p_SetCoeff(m1,C2,r);
Note: See TracChangeset
for help on using the changeset viewer.