source: git/kernel/p_Mult_nn__T.cc @ 994445

spielwiese
Last change on this file since 994445 was 994445, checked in by Oliver Wienand <wienand@…>, 17 years ago
Neuer Koeffizientenbereich Z/n Neuer Makrodatentyp NATNUMBER = unsigned long Bisschen aufgeraeumt git-svn-id: file:///usr/local/Singular/svn/trunk@10015 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/***************************************************************
5 *  File:    p_Mult_n__Template.cc
6 *  Purpose: template for p_Mult_n
7 *  Author:  obachman (Olaf Bachmann)
8 *  Created: 8/00
9 *  Version: $Id: p_Mult_nn__T.cc,v 1.7 2007-05-03 13:50:09 wienand Exp $
10 *******************************************************************/
11
12/***************************************************************
13 *
14 *   Returns:  p*n
15 *   Destroys: p
16 *   Const:    n
17 *
18 ***************************************************************/
19LINKAGE poly p_Mult_nn(poly p, const number n, const ring r)
20{
21  pAssume(!n_IsZero(n,r));
22  p_Test(p, r);
23
24  poly q = p;
25#if defined(HAVE_RING2TOM)|| defined(HAVE_RINGMODN)
26  poly old = NULL;
27#endif
28  while (p != NULL)
29  {
30#if not(defined(HAVE_RING2TOM)|| defined(HAVE_RINGMODN))
31    number nc = pGetCoeff(p);
32    pSetCoeff0(p, n_Mult(n, nc, r));
33    n_Delete(&nc, r);
34    pIter(p);
35#else
36    number tmp = n_Mult(n, pGetCoeff(p), r);
37    if (r->cring==0 || (r->cring > 0 && tmp != NULL))
38    {
39       p_SetCoeff(p, tmp, r);
40       old = p;
41       pIter(p);
42    }
43    else
44    {
45      n_Delete(&tmp, r);
46      if (old == NULL) { q = pNext(q); }
47      else { pNext(old) = pNext(p); }
48      pIter(p);    // TODO Free Monom OLIVER
49    }
50#endif
51  }
52  p_Test(q, r);
53  return q;
54}
55
56
Note: See TracBrowser for help on using the repository browser.