spielwiese
Last change
on this file since fe2d4c was
ac434f,
checked in by Frank Seelisch <seelisch@…>, 13 years ago
|
Revert "removed old switch HAVE_ZERODIVISORS"
This reverts commit dbb0d9b064d608e0b3bb83e30eaf3e2de1ad44f3.
git-svn-id: file:///usr/local/Singular/svn/trunk@13990 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
1.3 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$ |
---|
10 | *******************************************************************/ |
---|
11 | |
---|
12 | /*************************************************************** |
---|
13 | * |
---|
14 | * Returns: p*n |
---|
15 | * Destroys: p |
---|
16 | * Const: n |
---|
17 | * |
---|
18 | ***************************************************************/ |
---|
19 | LINKAGE 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 | #ifdef HAVE_ZERODIVISORS |
---|
26 | poly old = NULL; |
---|
27 | #endif |
---|
28 | while (p != NULL) |
---|
29 | { |
---|
30 | #ifndef HAVE_ZERODIVISORS |
---|
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 (!nIsZero(tmp)) |
---|
38 | { |
---|
39 | number nc = pGetCoeff(p); |
---|
40 | p_SetCoeff0(p, tmp, r); |
---|
41 | n_Delete(&nc, r); |
---|
42 | old = p; |
---|
43 | pIter(p); |
---|
44 | } |
---|
45 | else |
---|
46 | { |
---|
47 | n_Delete(&tmp, r); |
---|
48 | if (old == NULL) |
---|
49 | { |
---|
50 | pIter(p); |
---|
51 | p_LmDelete(&q, r); |
---|
52 | } |
---|
53 | else |
---|
54 | { |
---|
55 | p_LmDelete(&p, r); |
---|
56 | pNext(old) = p; |
---|
57 | } |
---|
58 | } |
---|
59 | #endif |
---|
60 | } |
---|
61 | p_Test(q, r); |
---|
62 | return q; |
---|
63 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.