Changeset 093f30e in git for kernel/p_Mult_q.cc
- Timestamp:
- Feb 8, 2008, 11:11:30 AM (16 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 60544db1dc67a36a012f9f3809c0e8d260f9bad0
- Parents:
- ecededc1c7ef7a762ce55b72be0707700967ceab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/p_Mult_q.cc
recededc r093f30e 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: p_Mult_q.cc,v 1. 6 2008-01-30 18:56:37wienand Exp $9 * Version: $Id: p_Mult_q.cc,v 1.7 2008-02-08 10:11:30 wienand Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 69 69 assume(p != NULL && pNext(p) != NULL && q != NULL && pNext(q) != NULL); 70 70 pAssume1(! pHaveCommonMonoms(p, q)); 71 #ifdef HAVE_RINGS 72 assume(!rField_is_Domain(currRing)); 73 #endif 71 74 assume(lp >= 1 && lq >= 1); 72 75 p_Test(p, r); … … 74 77 75 78 poly res = pp_Mult_mm(p,q,r); // holds initially q1*p 76 #ifdef HAVE_RINGS77 if (rField_is_Ring(currRing))78 WarnS("_p_Mult_q_Bucket not ring testet !!!");79 #endif80 79 poly qq = pNext(q); // we iter of this 81 80 poly qn = pp_Mult_mm(qq, p,r); // holds p1*qi
Note: See TracChangeset
for help on using the changeset viewer.