Changeset 093f30e in git for kernel/p_Mult_q.cc


Ignore:
Timestamp:
Feb 8, 2008, 11:11:30 AM (16 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
60544db1dc67a36a012f9f3809c0e8d260f9bad0
Parents:
ecededc1c7ef7a762ce55b72be0707700967ceab
Message:
kstd1.cc, kstd2.cc:
redRing2toM --> redRing

kutil.*:
extendedspoly unit case

p_Mult_q.cc:
assume domain for bucket mult

pp_Mult_mm__T.cc:
free tmp memory

rmodulo2m.cc
rmodulon.cc


git-svn-id: file:///usr/local/Singular/svn/trunk@10573 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/p_Mult_q.cc

    recededc r093f30e  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: p_Mult_q.cc,v 1.6 2008-01-30 18:56:37 wienand Exp $
     9 *  Version: $Id: p_Mult_q.cc,v 1.7 2008-02-08 10:11:30 wienand Exp $
    1010 *******************************************************************/
    1111#include "mod2.h"
     
    6969  assume(p != NULL && pNext(p) != NULL && q != NULL && pNext(q) != NULL);
    7070  pAssume1(! pHaveCommonMonoms(p, q));
     71#ifdef HAVE_RINGS
     72  assume(!rField_is_Domain(currRing));
     73#endif
    7174  assume(lp >= 1 && lq >= 1);
    7275  p_Test(p, r);
     
    7477
    7578  poly res = pp_Mult_mm(p,q,r);     // holds initially q1*p
    76 #ifdef HAVE_RINGS
    77   if (rField_is_Ring(currRing))
    78     WarnS("_p_Mult_q_Bucket not ring testet !!!");
    79 #endif
    8079  poly qq = pNext(q);               // we iter of this
    8180  poly qn = pp_Mult_mm(qq, p,r);    // holds p1*qi
Note: See TracChangeset for help on using the changeset viewer.