spielwiese
Last change
on this file since 014b65 was
014b65,
checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
|
- moved misc,reporter,resources,coeffs,polys -> (new) libpolys (Hans agreed)
- migrated to automake in coeffs, misc
status: everything builds (except polys)
todo: . migrate resources and reporter to automake
. create autoconf macros for omalloc, factory, and libpolys
|
-
Property mode set to
100644
|
File size:
729 bytes
|
Rev | Line | |
---|
[35aab3] | 1 | /**************************************** |
---|
| 2 | * Computer Algebra System SINGULAR * |
---|
| 3 | ****************************************/ |
---|
[341696] | 4 | /* $Id$ */ |
---|
[35aab3] | 5 | /* |
---|
| 6 | * ABSTRACT - templates for pr routines |
---|
| 7 | */ |
---|
| 8 | |
---|
| 9 | |
---|
| 10 | static poly PR_NAME |
---|
| 11 | (poly &src, ring r_src, ring r_dest) |
---|
| 12 | { |
---|
| 13 | spolyrec dest_s; |
---|
| 14 | poly dest = &dest_s; |
---|
| 15 | poly tmp; |
---|
| 16 | PR_INIT_EVECTOR_COPY(r_src, r_dest); |
---|
| 17 | |
---|
| 18 | while (src != NULL) |
---|
| 19 | { |
---|
| 20 | pNext(dest) = (poly) PR_ALLOC_MONOM(r_dest); |
---|
| 21 | pIter(dest); |
---|
| 22 | pSetCoeff0(dest, PR_NCOPY(pGetCoeff(src), r_src)); |
---|
| 23 | PR_CPY_EVECTOR(dest, r_dest, src, r_src); |
---|
| 24 | tmp = pNext(src); |
---|
| 25 | PR_DELETE_MONOM(src, r_src); |
---|
| 26 | src = tmp; |
---|
| 27 | } |
---|
| 28 | pNext(dest) = NULL; |
---|
| 29 | dest = pNext(&dest_s); |
---|
| 30 | PR_SORT_POLY(dest, r_dest, r_src); |
---|
| 31 | p_Test(dest, r_dest); |
---|
| 32 | return dest; |
---|
| 33 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.