My Project
Loading...
Searching...
No Matches
kInline.h
Go to the documentation of this file.
1/****************************************
2* Computer Algebra System SINGULAR *
3****************************************/
4/***************************************************************
5 * File: kInline.h
6 * Purpose: implementation of std related inline routines
7 * Author: obachman (Olaf Bachmann)
8 * Created: 8/00
9 *******************************************************************/
10#ifndef KINLINE_H
11#define KINLINE_H
12
13#if !defined(NO_KINLINE) || defined(KUTIL_CC)
14/* this file is a header file with inline routines,
15 * if NO_KINLINE is not defined (AND ONLY THEN!)
16 * otherwise it is an part of kutil.cc and a source file!
17 * (remark: NO_KINLINE is defined by KDEBUG, i.e. in the debug version)
18 */
19
20#include "omalloc/omalloc.h"
21#include "misc/options.h"
23#include "polys/kbuckets.h"
24
25#include "kernel/polys.h"
26
27#ifdef HAVE_SHIFTBBA
28#include "polys/shiftop.h"
29#endif
30
31
32#define HAVE_TAIL_BIN
33// This doesn't really work, fixme, if necessary
34// #define HAVE_LM_BIN
35
36
37
39{
40 assume(i>= 0 && i<=sl);
41 assume(S_2_R[i] >= 0 && S_2_R[i] <= tl);
42 TObject* TT = R[S_2_R[i]];
43 assume(TT != NULL && TT->p == S[i]);
44 return TT;
45}
46
48{
49 if (i >= 0 && i <= sl)
50 {
51 int sri= S_2_R[i];
52 if ((sri >= 0) && (sri <= tl))
53 {
54 TObject* t = R[sri];
55 if ((t != NULL) && (t->p == S[i]))
56 return t;
57 }
58 // last but not least, try kFindInT
59 sri = kFindInT(S[i], T, tl);
60 if (sri >= 0)
61 return &(T[sri]);
62 }
63 return NULL;
64}
65
67{
68 if (tailRing == currRing)
69 return kNoether;
70 else
71 {
72 assume((kNoether == NULL && t_kNoether == NULL) ||
73 (kNoether != NULL && t_kNoether != NULL));
74 return t_kNoether;
75 }
76}
77
78/***************************************************************
79 *
80 * Operation on TObjects
81 *
82 ***************************************************************/
83
85{
86 TSet T = (TSet)omAlloc0(setmaxT*sizeof(TObject));
87 for (int i=setmaxT-1; i>=0; i--)
88 {
89 T[i].tailRing = currRing;
90 T[i].i_r = -1;
91 }
92 return T;
93}
94
96{
97 return (TObject**) omAlloc0(setmaxT*sizeof(TObject*));
98}
99
100KINLINE unsigned long* initsevT()
101{
102 return (unsigned long*) omAlloc0(setmaxT*sizeof(unsigned long));
103}
104
105// initialization
107{
108 tailRing = r;
109}
111{
112 memset(this, 0, sizeof(sTObject));
113 i_r = -1;
114 Set(r);
115}
117{
118 Init(r);
119}
120KINLINE void sTObject::Set(poly p_in, ring r)
121{
122#ifdef HAVE_SHIFTBBA
123 if (r->isLPring)
124 {
125 shift = si_max(p_mFirstVblock(p_in, r) - 1, 0);
126 if (!shift) p_Test(p_in, r);
127 }
128 else
129#endif
130 {
131 p_Test(p_in, r);
132 }
133 if (r != currRing)
134 {
135 assume(r == tailRing);
136 t_p = p_in;
137 }
138 else
139 {
140 p = p_in;
141 }
142 pLength=::pLength(p_in);
143}
144
145KINLINE sTObject::sTObject(poly p_in, ring r)
146{
147 Init(r);
148 Set(p_in, r);
149}
150
151KINLINE void sTObject::Set(poly p_in, ring c_r, ring t_r)
152{
153 if (c_r != t_r)
154 {
155 assume(c_r == currRing && t_r == tailRing);
156#ifdef HAVE_SHIFTBBA
157 if (c_r->isLPring)
158 {
159 shift = si_max(p_mFirstVblock(p_in, c_r) - 1, 0);
160 if (!shift) p_Test(p_in, currRing);
161 }
162 else
163#endif
164 {
165 p_Test(p_in, currRing);
166 }
167 p = p_in;
168 pLength=::pLength(p_in);
169 }
170 else
171 {
172 Set(p_in, c_r);
173 }
174}
175
176KINLINE sTObject::sTObject(poly p_in, ring c_r, ring t_r)
177{
178 Init(t_r);
179 Set(p_in, c_r, t_r);
180}
181
183{
184 *this = *T;
185 if (copy)
186 {
187 if (t_p != NULL)
188 {
191 }
192 else
193 {
194 p = p_Copy(p, currRing);
195 }
196 }
197}
198
200{
201 if (t_p != NULL)
202 {
204 if (p != NULL)
206 }
207 else
208 {
210 }
211}
212
214{
215 p = NULL;
216 t_p = NULL;
217 ecart = 0;
218 length = 0;
219 pLength = 0;
220 FDeg = 0;
222}
223
225{
226 if (t_p != NULL)
227 {
229 if (p != NULL) /* and t_p!=NULL*/
230 {
231 p = p_LmInit(p, currRing);
233 pNext(p) = pNext(t_p);
234 }
235 }
236 else
237 {
238 p = p_Copy(p, currRing);
239 }
240}
241
243{
244 if (p == NULL && t_p != NULL)
246
247 return p;
248}
250{
251 if (t_p == NULL)
252 {
253 if (p != NULL && tailRing != currRing)
254 {
256 return t_p;
257 }
258 return p;
259 }
260 return t_p;
261}
263{
264 assume(r == tailRing || r == currRing);
265 if (r == currRing)
266 return GetLmCurrRing();
267
268 if (t_p == NULL && p != NULL)
270
271 return t_p;
272}
273
274KINLINE void sTObject::GetLm(poly &p_r, ring &r_r) const
275{
276 if (t_p != NULL)
277 {
278 p_r = t_p;
279 r_r = tailRing;
280 }
281 else
282 {
283 p_r = p;
284 r_r = currRing;
285 }
286}
287
289{
290 return (p == NULL && t_p == NULL);
291}
292
294{
295 if (pLength <= 0) pLength = ::pLength(p != NULL ? p : t_p);
296 return pLength;
297}
298
304
306{
307 assume(p != NULL || t_p != NULL);
308 if (t_p != NULL) return pNext(t_p);
309 return pNext(p);
310}
311
312// Iterations
314{
315 assume(p != NULL || t_p != NULL);
316 if (t_p != NULL)
317 {
319 if (p != NULL)
320 {
322 p = NULL;
323 }
324 }
325 else
326 {
328 }
330}
331
332
333// arithmetic
335{
336 if (t_p != NULL)
337 {
338 t_p = p_Mult_nn(t_p, n, tailRing);
339 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p));
340 }
341 else
342 {
343 p = p_Mult_nn(p, n, currRing, tailRing);
344 }
345}
346
348{
349 if (t_p != NULL)
350 {
352 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p));
353 }
354 else
355 {
356 pNormalize(p);
357 }
359}
360
366
368{
369 if (t_p != NULL)
370 {
372 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p));
373 }
374 else
375 {
377 }
378}
379
380KINLINE void
381sTObject::ShallowCopyDelete(ring new_tailRing, omBin new_tailBin,
382 pShallowCopyDeleteProc p_shallow_copy_delete,
383 BOOLEAN set_max)
384{
385 if (new_tailBin == NULL) new_tailBin = new_tailRing->PolyBin;
386 if (t_p != NULL)
387 {
388 t_p = p_shallow_copy_delete(t_p, tailRing, new_tailRing, new_tailBin);
389 if (p != NULL)
390 pNext(p) = pNext(t_p);
391 if (new_tailRing == currRing)
392 {
393 if (p == NULL) p = t_p;
394 else p_LmFree(t_p, tailRing);
395 t_p = NULL;
396 }
397 }
398 else if (p != NULL) /* && t_p==NULL */
399 {
400 if (pNext(p) != NULL)
401 {
402 pNext(p) = p_shallow_copy_delete(pNext(p),
403 tailRing, new_tailRing, new_tailBin);
404 }
405 if (new_tailRing != currRing)
406 {
407 t_p = k_LmInit_currRing_2_tailRing(p, new_tailRing);
408 pNext(t_p) = pNext(p);
409 }
410 }
411 if (max_exp != NULL)
412 {
413 max_exp = p_shallow_copy_delete(max_exp,tailRing,new_tailRing,new_tailBin);
414 }
415 else if (set_max && pNext(t_p) != NULL)
416 {
417 max_exp = p_GetMaxExpP(pNext(t_p), new_tailRing);
418 }
419 tailRing = new_tailRing;
420}
421
423{
424 if (p != NULL) return p_FDeg(p, currRing);
425 return tailRing->pFDeg(t_p, tailRing);
426}
428{
429 if (p != NULL) return p_Totaldegree(p, currRing);
430 return p_Totaldegree(t_p,tailRing);
431}
433{
434 FDeg = this->pFDeg();
435 return FDeg;
436}
438{
439 assume(FDeg == this->pFDeg());
440 return FDeg;
441}
443{
444 return tailRing->pLDeg(GetLmTailRing(), &length, tailRing);
445}
447{
448 FDeg = this->pFDeg();
449 long d = this->pLDeg();
450 ecart = d - FDeg;
451 return d;
452}
453
454//extern void pCleardenom(poly p);
455// extern void pNorm(poly p);
456
457// manipulations
459{
460 assume(p != NULL);
462 if ((TEST_OPT_CONTENTSB) && (!is_ring))
463 {
464 number n;
465 if (t_p != NULL)
466 {
469 }
470 else
471 {
473 }
474 if (!nIsOne(n))
475 {
477 denom->n=nInvers(n);
478 denom->next=DENOMINATOR_LIST;
479 DENOMINATOR_LIST=denom;
480 }
481 nDelete(&n);
482 }
483 else if (is_ring)
484 {
485 number c;
486 if (t_p != NULL)
487 c=pGetCoeff(t_p);
488 else
489 c=pGetCoeff(p);
490 const coeffs C=tailRing->cf;
491 number u=n_GetUnit(c,C);
492
493 if (t_p != NULL)
494 {
495 if (!n_IsOne(u,C))
496 {
497 number uInv = n_Invers(u, C);
499 n_Delete(&uInv,C);
500 }
502 {
504 }
506 }
507 else
508 {
509 if (!n_IsOne(u,C))
510 {
511 number uInv = n_Invers(u, C);
512 p=p_Mult_nn(p,uInv,tailRing);
513 n_Delete(&uInv,C);
514 }
516 {
517 p = p_Neg(p,tailRing);
518 }
519 }
520 n_Delete(&u,C);
521 }
522 else
523 {
524 if (t_p != NULL)
525 {
528 }
529 else
530 {
532 }
533 }
534}
535
537{
538 assume(p != NULL);
539 if (t_p != NULL)
540 {
543 {
545 }
547 }
548 else
549 {
552 {
553 p=p_Neg (p,currRing);
554 }
555 }
556}
557
558KINLINE void sTObject::pNorm() // pNorm seems to be a _bad_ method name...
559{
560 assume(p != NULL);
561 if (! is_normalized)
562 {
563 p_Norm(p, currRing);
564 if (t_p != NULL)
567 }
568}
569
570
571
572/***************************************************************
573 *
574 * Operation on LObjects
575 *
576 ***************************************************************/
577// Initialization
579{
581 sev = 0;
582}
583
584
591
593{
594 memset(this, 0, sizeof(sLObject));
595 i_r1 = -1;
596 i_r2 = -1;
597 i_r = -1;
598 Set(r);
599}
601{
602 Init(r);
603}
604KINLINE sLObject::sLObject(poly p_in, ring r)
605{
606 Init(r);
607 Set(p_in, r);
608}
609
610KINLINE sLObject::sLObject(poly p_in, ring c_r, ring t_r)
611{
612 Init(t_r);
613 Set(p_in, c_r, t_r);
614}
615
617{
618 if (bucket == NULL)
619 {
620 unsigned l = GetpLength();
621 if (use_bucket)
622 {
624 if (l>1)
625 {
626 poly tp = GetLmTailRing();
627 assume((int)l == ::pLength(tp));
628 kBucketInit(bucket, pNext(tp), l-1);
629 pNext(tp) = NULL;
630 if (p!=NULL) pNext(p) = NULL;
631 pLength = 0;
632 }
633 }
634 }
635}
636
637KINLINE void sLObject::SetLmTail(poly lm, poly p_tail, int p_Length, int use_bucket, ring _tailRing)
638{
639
640 Set(lm, _tailRing);
641 if (use_bucket)
642 {
643 bucket = kBucketCreate(_tailRing);
644 kBucketInit(bucket, p_tail, p_Length);
645 pNext(lm) = NULL;
646 pLength = 0;
647 }
648 else
649 {
650 pNext(lm) = p_tail;
651 pLength = p_Length + 1;
652 }
653}
654
656{
657 if (bucket != NULL)
658 {
660 }
661 else
662 {
663 poly _p = (t_p != NULL ? t_p : p);
664 assume(_p != NULL);
665 pNext(_p) = __p_Mult_nn(pNext(_p), n, tailRing);
666 }
667}
668
670 poly spNoether)
671{
672 if (bucket != NULL)
673 {
674 kBucket_Minus_m_Mult_p(bucket, m, q, &lq, spNoether);
675 }
676 else
677 {
678 if (lq<=0) lq= ::pLength(q);
679 poly _p = (t_p != NULL ? t_p : p);
680 assume(_p != NULL);
681
682 int lp=pLength-1;
683 pNext(_p) = p_Minus_mm_Mult_qq( pNext(_p), m, q, lp, lq,
684 spNoether, tailRing );
685 pLength=lp+1;
686// tailRing->p_Procs->p_Minus_mm_Mult_qq(pNext(_p), m, q, shorter,spNoether, tailRing, last);
687// pLength += lq - shorter;
688 }
689}
690
692{
694 if (bucket != NULL)
695 {
696 poly _p = kBucketExtractLm(bucket);
697 if (_p == NULL)
698 {
700 p = t_p = NULL;
701 return;
702 }
703 Set(_p, tailRing);
704 }
705 else
706 {
707 pLength--;
708 }
709}
710
712{
713 poly ret = GetLmTailRing();
714 poly pn;
715
716 assume(p != NULL || t_p != NULL);
717
718 if (bucket != NULL)
719 {
721 if (pn == NULL)
723 }
724 else
725 {
726 pn = pNext(ret);
727 }
728 pLength--;
729 pNext(ret) = NULL;
730 if (p != NULL && t_p != NULL)
732
733 Set(pn, tailRing);
734 return ret;
735}
736
738{
739 //kTest_L(this);
740 poly tp = GetLmTailRing();
741 assume(tp != NULL);
742
743 if (bucket != NULL)
744 {
747 pLength++;
748 }
749 return tp;
750}
751
752
754{
755 //kTest_L(this);
756 if (p == NULL)
757 {
759 ((lmBin!=NULL)?lmBin:currRing->PolyBin));
760 FDeg = pFDeg();
761 }
762 else if ((lmBin != NULL) && (lmBin != currRing->PolyBin))
763 {
765 FDeg = pFDeg();
766 }
767
768 if (bucket != NULL)
769 {
772 pLength++;
773 if (t_p != NULL) pNext(t_p) = pNext(p);
774 }
775 //kTest_L(this);
776 return p;
777}
778
779KINLINE void
781 pShallowCopyDeleteProc p_shallow_copy_delete)
782{
783 if (bucket != NULL)
784 kBucketShallowCopyDelete(bucket, new_tailRing, new_tailRing->PolyBin,
785 p_shallow_copy_delete);
786 sTObject::ShallowCopyDelete(new_tailRing,
787 new_tailRing->PolyBin,p_shallow_copy_delete,
788 FALSE);
789}
790
792{
793 if (t_p != NULL)
794 {
796 }
797 else
798 {
800 }
801}
802
804{
805 if (bucket != NULL)
806 {
808 kBucket_pt new_bucket = kBucketCreate(tailRing);
809 kBucketInit(new_bucket,
810 p_Copy(bucket->buckets[i], tailRing),
811 bucket->buckets_length[i]);
812 bucket = new_bucket;
813 if (t_p != NULL) pNext(t_p) = NULL;
814 if (p != NULL) pNext(p) = NULL;
815 }
816 TObject::Copy();
817}
818
820{
821 poly tp = GetLmTailRing();
822 assume(tp != NULL);
823 if (bucket != NULL)
824 {
826 pNext(tp) = bucket->buckets[i];
827 long ldeg = tailRing->pLDeg(tp, &length, tailRing);
828 pNext(tp) = NULL;
829 return ldeg;
830 }
831 else
832 return tailRing->pLDeg(tp, &length, tailRing);
833}
835{
836 if (! deg_last || bucket != NULL) return sLObject::pLDeg();
837
838 long ldeg;
839 ldeg = tailRing->pLDeg(GetLmTailRing(), &length, tailRing);
840#ifndef SING_NDEBUG
841 if ( pLength == 0)
844#else
846#endif
847 return ldeg;
848}
849
851{
852 FDeg = this->pFDeg();
853 long d = this->pLDeg();
854 ecart = d - FDeg;
855 return d;
856}
858{
859 FDeg = this->pFDeg();
860 long d = this->pLDeg(use_last);
861 ecart = d - FDeg;
862 return d;
863}
865{
866 if (bucket == NULL)
867 return sTObject::GetpLength();
869 return bucket->buckets_length[i] + 1;
870}
872{
873 if (length_pLength)
874 {
875 length = this->GetpLength();
876 }
877 else
878 this->pLDeg();
879 return length;
880}
882{
883 poly tp = GetLmTailRing();
884 assume(tp != NULL);
885 if (bucket != NULL)
886 {
888 pNext(tp) = bucket->buckets[i];
889 long m = p_MinComp(tp, tailRing);
890 pNext(tp) = NULL;
891 return m;
892 }
893 else
894 return p_MinComp(tp, tailRing);
895}
897{
898 poly pp;
899 ring r;
900 GetLm(pp, r);
901 assume(pp != NULL);
902 return p_GetComp(pp, r);
903}
904
906{
907 memcpy(this, &t, sizeof(sTObject));
908 return *this;
909}
910
912{
913 if (p1 == NULL) return NULL;
914 if (i_r1 == -1) i_r1 = kFindInT(p1, s->T, s->tl);
915 assume(i_r1 >= 0 && i_r1 <= s->tl);
916 TObject* T = s->R[i_r1];
917 assume(T->p == p1);
918 return T;
919}
920
922{
923 if (p1 == NULL) return NULL;
924 assume(p2 != NULL);
925 if (i_r2 == -1) i_r2 = kFindInT(p2, strat->T, strat->tl);
926 assume(i_r2 >= 0 && i_r2 <= strat->tl);
927 TObject* T = strat->R[i_r2];
928 assume(T->p == p2);
929 return T;
930}
931
933 TObject* &T_1, TObject* &T_2)
934{
935 if (p1 == NULL)
936 {
937 T_1 = NULL;
938 T_2 = NULL;
939 return;
940 }
941 assume(p1 != NULL && p2 != NULL);
942 if (i_r1 == -1) i_r1 = kFindInT(p1, strat->T, strat->tl);
943 if (i_r2 == -1) i_r2 = kFindInT(p2, strat->T, strat->tl);
944 assume(i_r1 >= 0 && i_r1 <= strat->tl);
945 assume(i_r2 >= 0 && i_r2 <= strat->tl);
946 T_1 = strat->R[i_r1];
947 T_2 = strat->R[i_r2];
948 assume(T_1->p == p1);
949 assume(T_2->p == p2);
950 return;
951}
952
953/***************************************************************
954 *
955 * Conversion of polys
956 *
957 ***************************************************************/
958
959KINLINE poly k_LmInit_currRing_2_tailRing(poly p, ring tailRing, omBin tailBin)
960{
961
962 poly t_p = p_LmInit(p, currRing, tailRing, tailBin);
963 pNext(t_p) = pNext(p);
964 pSetCoeff0(t_p, pGetCoeff(p));
965 return t_p;
966}
967
968KINLINE poly k_LmInit_tailRing_2_currRing(poly t_p, ring tailRing, omBin lmBin)
969{
970 poly p = p_LmInit(t_p, tailRing, currRing, lmBin);
971 pNext(p) = pNext(t_p);
972 pSetCoeff0(p, pGetCoeff(t_p));
973 return p;
974}
975
976// this should be made more efficient
978{
979 poly np = k_LmInit_currRing_2_tailRing(p, tailRing, tailBin);
981 return np;
982}
983
985{
986 poly np = k_LmInit_tailRing_2_currRing(p, tailRing, lmBin);
987 p_LmFree(p, tailRing);
988 return np;
989}
990
991KINLINE poly k_LmInit_currRing_2_tailRing(poly p, ring tailRing)
992{
993 return k_LmInit_currRing_2_tailRing(p, tailRing, tailRing->PolyBin);
994}
995
996KINLINE poly k_LmInit_tailRing_2_currRing(poly p, ring tailRing)
997{
998 return k_LmInit_tailRing_2_currRing(p, tailRing, currRing->PolyBin);
999}
1000
1002{
1003 return k_LmShallowCopyDelete_currRing_2_tailRing(p, tailRing, tailRing->PolyBin);
1004}
1005
1007{
1008 return k_LmShallowCopyDelete_tailRing_2_currRing(p, tailRing, currRing->PolyBin);
1009}
1010
1011/***************************************************************
1012 *
1013 * Lcm business
1014 *
1015 ***************************************************************/
1016// get m1 = LCM(LM(p1), LM(p2))/LM(p1)
1017// m2 = LCM(LM(p1), LM(p2))/LM(p2)
1018KINLINE BOOLEAN k_GetLeadTerms(const poly p1, const poly p2, const ring p_r,
1019 poly &m1, poly &m2, const ring m_r)
1020{
1021 p_LmCheckPolyRing(p1, p_r);
1022 p_LmCheckPolyRing(p2, p_r);
1023
1024 int i;
1025 long x;
1026 m1 = p_Init(m_r,m_r->PolyBin);
1027 m2 = p_Init(m_r,m_r->PolyBin);
1028
1029 for (i = p_r->N; i; i--)
1030 {
1031 x = p_GetExpDiff(p1, p2, i, p_r);
1032 if (x > 0)
1033 {
1034 if (x > (long) m_r->bitmask) goto false_return;
1035 p_SetExp(m2,i,x, m_r);
1036 p_SetExp(m1,i,0, m_r);
1037 }
1038 else
1039 {
1040 if (-x > (long) m_r->bitmask) goto false_return;
1041 p_SetExp(m1,i,-x, m_r);
1042 p_SetExp(m2,i,0, m_r);
1043 }
1044 }
1045
1046 p_Setm(m1, m_r);
1047 p_Setm(m2, m_r);
1048 return TRUE;
1049
1050 false_return:
1051 p_LmFree(m1, m_r);
1052 p_LmFree(m2, m_r);
1053 m1 = m2 = NULL;
1054 return FALSE;
1055}
1056
1057// get m1 = LCM(LM(p1), LM(p2))/LM(p1)
1058// m2 = LCM(LM(p1), LM(p2))/LM(p2) in tailRing
1059// lcm = LCM(LM(p1), LM(p2)) in leadRing
1060KINLINE void k_GetStrongLeadTerms(const poly p1, const poly p2, const ring leadRing,
1061 poly &m1, poly &m2, poly &lcm, const ring tailRing)
1062{
1063 p_LmCheckPolyRing(p1, leadRing);
1064 p_LmCheckPolyRing(p2, leadRing);
1065
1066 int i;
1067 int x;
1068 int e1;
1069 int e2;
1070 int s;
1071 m1 = p_Init(tailRing,tailRing->PolyBin);
1072 m2 = p_Init(tailRing,tailRing->PolyBin);
1073 lcm = p_Init(leadRing,leadRing->PolyBin);
1074
1075 for (i = leadRing->N; i>=0; i--)
1076 {
1077 e1 = p_GetExp(p1,i,leadRing);
1078 e2 = p_GetExp(p2,i,leadRing);
1079 x = e1 - e2;
1080 if (x > 0)
1081 {
1082 p_SetExp(m2,i,x, tailRing);
1083 //p_SetExp(m1,i,0, tailRing); // done by p_Init
1084 s = e1;
1085 }
1086 else if (x<0)
1087 {
1088 p_SetExp(m1,i,-x, tailRing);
1089 //p_SetExp(m2,i,0, tailRing); // done by p_Init
1090 s = e2;
1091 }
1092 else
1093 s = e1; // e1==e2
1094 p_SetExp(lcm,i,s, leadRing);
1095 }
1096
1097 p_Setm(m1, tailRing);
1098 p_Setm(m2, tailRing);
1099 p_Setm(lcm, leadRing);
1100}
1101
1102/***************************************************************
1103 *
1104 * Misc things
1105 *
1106 ***************************************************************/
1108{
1109 BOOLEAN ret;
1110 number mult, rest;
1111 TObject red = *PW;
1112 red.Copy();
1113 rest = n_QuotRem(pGetCoeff(Red->p), pGetCoeff(red.p),
1114 &mult, currRing->cf);
1115 red.Mult_nn(rest);
1116
1117 assume(PR->GetLmCurrRing() != red.GetLmCurrRing());
1118 ret = ksReducePolyLC(Red, &red, NULL, &mult);
1119 red.Delete();
1120 red.Clear();
1121
1122 return ret;
1123}
1124
1126{
1127 BOOLEAN ret;
1128 number coef=NULL;
1129
1130 assume(PR->GetLmCurrRing() != PW->GetLmCurrRing());
1131 ret = ksReducePoly(Red, PW, NULL, &coef, NULL,NULL,TRUE);
1132
1133#if 0 // shlould not happen
1134 if (!ret)
1135 {
1136 if (! n_IsOne(coef, currRing->cf))
1137 {
1138 PR->Mult_nn(coef);
1139 // HANNES: mark for Normalize
1140 }
1141 }
1142#endif
1143 n_Delete(&coef, currRing->cf);
1144 return ret;
1145}
1146
1148{
1149 BOOLEAN ret;
1150 number coef;
1151
1152 assume(PR->GetLmCurrRing() != PW->GetLmCurrRing());
1153 Red->HeadNormalize();
1154 ret = ksReducePoly(Red, PW, NULL, &coef);
1155
1156 if (!ret)
1157 {
1158 if (! n_IsOne(coef, currRing->cf))
1159 {
1160 PR->Mult_nn(coef);
1161 // HANNES: mark for Normalize
1162 }
1163 n_Delete(&coef, currRing->cf);
1164 }
1165 return ret;
1166}
1167
1168/***************************************************************
1169 *
1170 * Routines for backwards-Compatibility
1171 *
1172 *
1173 ***************************************************************/
1174KINLINE poly ksOldSpolyRed(poly p1, poly p2, poly spNoether)
1175{
1176 LObject L(p2);
1177 TObject T(p1);
1178
1179 ksReducePoly(&L, &T, spNoether);
1180
1181 return L.GetLmCurrRing();
1182}
1183
1184KINLINE poly ksOldSpolyRedNew(poly p1, poly p2, poly spNoether)
1185{
1186 LObject L(p_Copy(p2, currRing));
1187 TObject T(p1);
1188
1189 ksReducePoly(&L, &T, spNoether);
1190
1191 return L.GetLmCurrRing();
1192}
1193
1194KINLINE poly ksOldCreateSpoly(poly p1, poly p2, poly spNoether, ring r)
1195{
1196 LObject L(r);
1197 L.p1 = p1;
1198 L.p2 = p2;
1199
1200 ksCreateSpoly(&L, spNoether);
1201 return L.GetLmCurrRing();
1202}
1203
1204void ksOldSpolyTail(poly p1, poly q, poly q2, poly spNoether, ring r)
1205{
1206 LObject L(q, currRing, r);
1207 TObject T(p1, currRing, r);
1208
1209 ksReducePolyTail(&L, &T, q2, spNoether);
1210}
1211
1213{
1214 LObject L(p);
1215 return redtailBba(&L, pos, strat,FALSE, normalize);
1216}
1217
1219{
1220 LObject L(p, currRing, strat->tailRing); // ? L(p); ??
1221 return redtailBbaBound(&L, pos, strat,bound, FALSE, normalize);
1222}
1223
1224KINLINE poly redtailBba_Ring (poly p,int pos,kStrategy strat)
1225{
1226 LObject L(p, currRing, strat->tailRing);
1227 return redtailBba_Ring(&L, pos, strat);
1228}
1229KINLINE poly redtailBba_Z (poly p,int pos,kStrategy strat)
1230{
1231 LObject L(p, currRing, strat->tailRing);
1232 return redtailBba_Z(&L, pos, strat);
1233}
1234
1235KINLINE void clearS (poly p, unsigned long p_sev, int* at, int* k,
1236 kStrategy strat)
1237{
1238 assume(p_sev == pGetShortExpVector(p));
1239 if (strat->noClearS) return;
1241 {
1242 if (!pLmShortDivisibleBy(p,p_sev, strat->S[*at], ~ strat->sevS[*at]))
1243 return;
1244 if(!n_DivBy(pGetCoeff(strat->S[*at]), pGetCoeff(p), currRing->cf))
1245 return;
1246 }
1247 else
1248 {
1249 if (!pLmShortDivisibleBy(p,p_sev, strat->S[*at], ~ strat->sevS[*at])) return;
1250 }
1251 deleteInS((*at),strat);
1252 (*at)--;
1253 (*k)--;
1254}
1255
1256// dummy function for function pointer strat->rewCrit being usable in all
1257// possible choices for criteria
1258KINLINE BOOLEAN arriRewDummy(poly /*sig*/, unsigned long /*not_sevSig*/, poly /*lm*/, kStrategy /*strat*/, int /*start=0*/)
1259{
1260 return FALSE;
1261}
1262
1263#endif // defined(KINLINE) || defined(KUTIL_CC)
1264#endif // KINLINE_H
static int si_max(const int a, const int b)
Definition auxiliary.h:125
int BOOLEAN
Definition auxiliary.h:88
#define TRUE
Definition auxiliary.h:101
#define FALSE
Definition auxiliary.h:97
CanonicalForm FACTORY_PUBLIC pp(const CanonicalForm &)
CanonicalForm pp ( const CanonicalForm & f ).
Definition cf_gcd.cc:676
int l
Definition cfEzgcd.cc:100
int m
Definition cfEzgcd.cc:128
int i
Definition cfEzgcd.cc:132
int k
Definition cfEzgcd.cc:99
Variable x
Definition cfModGcd.cc:4090
int p
Definition cfModGcd.cc:4086
static CanonicalForm bound(const CFMatrix &M)
Definition cf_linsys.cc:460
KINLINE long SetDegStuffReturnLDeg()
Definition kInline.h:850
KINLINE void Tail_Mult_nn(number n)
Definition kInline.h:655
int i_r1
Definition kutil.h:194
KINLINE void Copy()
Definition kInline.h:803
KINLINE void Delete()
Definition kInline.h:585
KINLINE void LmDeleteAndIter()
Definition kInline.h:691
KINLINE TObject * T_2(const skStrategy *strat)
Definition kInline.h:921
KINLINE void PrepareRed(BOOLEAN use_bucket)
Definition kInline.h:616
KINLINE void CanonicalizeP()
Definition kInline.h:361
KINLINE void SetLmTail(poly lm, poly new_p, int length, int use_bucket, ring r)
Definition kInline.h:637
KINLINE void T_1_2(const skStrategy *strat, TObject *&T_1, TObject *&T_2)
Definition kInline.h:932
KINLINE void Normalize()
Definition kInline.h:347
unsigned long sev
Definition kutil.h:188
KINLINE void Init(ring tailRing=currRing)
Definition kInline.h:592
KINLINE long MinComp()
Definition kInline.h:881
kBucket_pt bucket
Definition kutil.h:193
poly p2
Definition kutil.h:189
KINLINE TObject * T_1(const skStrategy *strat)
Definition kInline.h:911
KINLINE int GetpLength()
Definition kInline.h:864
KINLINE int SetLength(BOOLEAN lengt_pLength=FALSE)
Definition kInline.h:871
KINLINE void Clear()
Definition kInline.h:578
KINLINE void Tail_Minus_mm_Mult_qq(poly m, poly qq, int lq, poly spNoether)
Definition kInline.h:669
KINLINE void ShallowCopyDelete(ring new_tailRing, pShallowCopyDeleteProc p_shallow_copy_delete)
Definition kInline.h:780
KINLINE poly GetTP()
Definition kInline.h:737
KINLINE long pLDeg()
Definition kInline.h:819
KINLINE sLObject & operator=(const sTObject &)
Definition kInline.h:905
KINLINE void SetShortExpVector()
Definition kInline.h:791
KINLINE void HeadNormalize()
Definition kInline.h:367
KINLINE poly GetP(omBin lmBin=(omBin) NULL)
Definition kInline.h:753
KINLINE sLObject(ring tailRing=currRing)
Definition kInline.h:600
poly p1
Definition kutil.h:189
KINLINE long Comp()
Definition kInline.h:896
KINLINE poly LmExtractAndIter()
Definition kInline.h:711
int i_r2
Definition kutil.h:194
KINLINE poly GetLm(ring r)
Definition kInline.h:262
KINLINE poly GetLmCurrRing()
Definition kInline.h:242
KINLINE void Init(ring r=currRing)
Definition kInline.h:110
KINLINE void Mult_nn(number n)
Definition kInline.h:334
int length
Definition kutil.h:80
KINLINE long SetDegStuffReturnLDeg()
Definition kInline.h:446
KINLINE poly GetLmTailRing()
Definition kInline.h:249
KINLINE void pCleardenom()
Definition kInline.h:458
int ecart
Definition kutil.h:79
KINLINE long GetpFDeg() const
Definition kInline.h:437
KINLINE sTObject(ring tailRing=currRing)
Definition kInline.h:116
KINLINE void ShallowCopyDelete(ring new_tailRing, omBin new_tailBin, pShallowCopyDeleteProc p_shallow_copy_delete, BOOLEAN set_max=TRUE)
Definition kInline.h:381
KINLINE void SetLmCurrRing()
Definition kInline.h:299
poly max_exp
Definition kutil.h:76
char is_normalized
Definition kutil.h:88
KINLINE long pLDeg()
Definition kInline.h:442
KINLINE void LmDeleteAndIter()
Definition kInline.h:313
int pLength
Definition kutil.h:81
KINLINE long pFDeg() const
Definition kInline.h:422
int i_r
Definition kutil.h:82
poly p
Definition kutil.h:74
KINLINE BOOLEAN IsNull() const
Definition kInline.h:288
KINLINE void Set(ring r=currRing)
Definition kInline.h:106
KINLINE void Delete()
Definition kInline.h:199
poly t_p
Definition kutil.h:75
ring tailRing
Definition kutil.h:77
KINLINE int GetpLength()
Definition kInline.h:293
KINLINE void pNorm()
Definition kInline.h:558
KINLINE void Clear()
Definition kInline.h:213
long FDeg
Definition kutil.h:78
KINLINE poly Next()
Definition kInline.h:305
int shift
Definition kutil.h:85
KINLINE void pContent()
Definition kInline.h:536
KINLINE long pTotalDeg() const
Definition kInline.h:427
KINLINE long SetpFDeg()
Definition kInline.h:432
KINLINE void Copy()
Definition kInline.h:224
KINLINE poly kNoetherTail()
Definition kInline.h:66
poly t_kNoether
Definition kutil.h:329
int * S_2_R
Definition kutil.h:341
ring tailRing
Definition kutil.h:342
TSet T
Definition kutil.h:325
polyset S
Definition kutil.h:305
poly kNoether
Definition kutil.h:328
TObject ** R
Definition kutil.h:339
int tl
Definition kutil.h:349
KINLINE TObject * s_2_t(int i)
Definition kInline.h:47
KINLINE TObject * S_2_T(int i)
Definition kInline.h:38
char noClearS
Definition kutil.h:399
int sl
Definition kutil.h:347
unsigned long * sevS
Definition kutil.h:321
static FORCE_INLINE number n_Invers(number a, const coeffs r)
return the multiplicative inverse of 'a'; raise an error if 'a' is not invertible
Definition coeffs.h:567
static FORCE_INLINE number n_QuotRem(number a, number b, number *q, const coeffs r)
Definition coeffs.h:684
static FORCE_INLINE BOOLEAN n_GreaterZero(number n, const coeffs r)
ordered fields: TRUE iff 'n' is positive; in Z/pZ: TRUE iff 0 < m <= roundedBelow(p/2),...
Definition coeffs.h:500
static FORCE_INLINE number n_GetUnit(number n, const coeffs r)
in Z: 1 in Z/kZ (where k is not a prime): largest divisor of n (taken in Z) that is co-prime with k i...
Definition coeffs.h:537
static FORCE_INLINE void n_Delete(number *p, const coeffs r)
delete 'p'
Definition coeffs.h:461
static FORCE_INLINE BOOLEAN n_DivBy(number a, number b, const coeffs r)
test whether 'a' is divisible 'b'; for r encoding a field: TRUE iff 'b' does not represent zero in Z:...
Definition coeffs.h:747
static FORCE_INLINE BOOLEAN n_IsOne(number n, const coeffs r)
TRUE iff 'n' represents the one element.
Definition coeffs.h:474
const CanonicalForm int s
Definition facAbsFact.cc:51
CFArray copy(const CFList &list)
write elements of list into an array
STATIC_VAR jList * T
Definition janet.cc:30
KINLINE poly k_LmShallowCopyDelete_tailRing_2_currRing(poly p, ring tailRing, omBin lmBin)
Definition kInline.h:984
KINLINE poly ksOldCreateSpoly(poly p1, poly p2, poly spNoether, ring r)
Definition kInline.h:1194
KINLINE poly redtailBba_Ring(poly p, int pos, kStrategy strat)
Definition kInline.h:1224
void ksOldSpolyTail(poly p1, poly q, poly q2, poly spNoether, ring r)
Definition kInline.h:1204
KINLINE poly k_LmShallowCopyDelete_currRing_2_tailRing(poly p, ring tailRing, omBin tailBin)
Definition kInline.h:977
KINLINE poly k_LmInit_currRing_2_tailRing(poly p, ring tailRing, omBin tailBin)
Definition kInline.h:959
KINLINE TSet initT()
Definition kInline.h:84
KINLINE void k_GetStrongLeadTerms(const poly p1, const poly p2, const ring leadRing, poly &m1, poly &m2, poly &lcm, const ring tailRing)
Definition kInline.h:1060
KINLINE int ksReducePolyTailLC_Z(LObject *PR, TObject *PW, LObject *Red)
Definition kInline.h:1107
KINLINE poly redtailBba(poly p, int pos, kStrategy strat, BOOLEAN normalize)
Definition kInline.h:1212
KINLINE poly ksOldSpolyRed(poly p1, poly p2, poly spNoether)
Definition kInline.h:1174
KINLINE poly k_LmInit_tailRing_2_currRing(poly t_p, ring tailRing, omBin lmBin)
Definition kInline.h:968
KINLINE TObject ** initR()
Definition kInline.h:95
KINLINE poly redtailBbaBound(poly p, int pos, kStrategy strat, int bound, BOOLEAN normalize)
Definition kInline.h:1218
KINLINE BOOLEAN arriRewDummy(poly, unsigned long, poly, kStrategy, int)
Definition kInline.h:1258
KINLINE int ksReducePolyTail(LObject *PR, TObject *PW, LObject *Red)
Definition kInline.h:1147
KINLINE poly ksOldSpolyRedNew(poly p1, poly p2, poly spNoether)
Definition kInline.h:1184
KINLINE void clearS(poly p, unsigned long p_sev, int *at, int *k, kStrategy strat)
Definition kInline.h:1235
KINLINE BOOLEAN k_GetLeadTerms(const poly p1, const poly p2, const ring p_r, poly &m1, poly &m2, const ring m_r)
Definition kInline.h:1018
KINLINE poly redtailBba_Z(poly p, int pos, kStrategy strat)
Definition kInline.h:1229
KINLINE int ksReducePolyTail_Z(LObject *PR, TObject *PW, LObject *Red)
Definition kInline.h:1125
KINLINE unsigned long * initsevT()
Definition kInline.h:100
void kBucketDeleteAndDestroy(kBucket_pt *bucket_pt)
Definition kbuckets.cc:223
void kBucketClear(kBucket_pt bucket, poly *p, int *length)
Definition kbuckets.cc:521
void kBucketShallowCopyDelete(kBucket_pt bucket, ring new_tailRing, omBin new_tailBin, pShallowCopyDeleteProc p_shallow_copy_delete)
For changing the ring of the Bpoly to new_tailBin.
Definition kbuckets.cc:535
void kBucket_Minus_m_Mult_p(kBucket_pt bucket, poly m, poly p, int *l, poly spNoether)
Bpoly == Bpoly - m*p; where m is a monom Does not destroy p and m assume (*l <= 0 || pLength(p) == *l...
Definition kbuckets.cc:722
void kBucket_Mult_n(kBucket_pt bucket, number n)
Multiply Bucket by number ,i.e. Bpoly == n*Bpoly.
Definition kbuckets.cc:598
void kBucketDestroy(kBucket_pt *bucket_pt)
Definition kbuckets.cc:216
void kBucketInit(kBucket_pt bucket, poly lm, int length)
Definition kbuckets.cc:493
poly kBucketExtractLm(kBucket_pt bucket)
Definition kbuckets.cc:511
kBucket_pt kBucketCreate(const ring bucket_ring)
Creation/Destruction of buckets.
Definition kbuckets.cc:209
void kBucketNormalize(kBucket_pt bucket)
apply n_Normalize to all coefficients
int kBucketCanonicalize(kBucket_pt bucket)
Canonicalizes Bpoly, i.e. converts polys of buckets into one poly in one bucket: Returns number of bu...
int ksReducePolyLC(LObject *PR, TObject *PW, poly spNoether, number *coef, kStrategy strat)
Definition kspoly.cc:477
void ksCreateSpoly(LObject *Pair, poly spNoether, int use_buckets, ring tailRing, poly m1, poly m2, TObject **R)
Definition kspoly.cc:1203
int ksReducePoly(LObject *PR, TObject *PW, poly spNoether, number *coef, poly *mon, kStrategy strat, BOOLEAN reduce)
Definition kspoly.cc:187
void deleteInS(int i, kStrategy strat)
Definition kutil.cc:1132
denominator_list_s * denominator_list
Definition kutil.h:64
int kFindInT(poly p, TSet T, int tlength)
returns index of p in TSet, or -1 if not found
Definition kutil.cc:703
TObject * TSet
Definition kutil.h:60
EXTERN_VAR denominator_list DENOMINATOR_LIST
Definition kutil.h:67
KINLINE poly k_LmInit_tailRing_2_currRing(poly p, ring tailRing, omBin bin)
Definition kInline.h:968
denominator_list next
Definition kutil.h:66
KINLINE poly k_LmInit_currRing_2_tailRing(poly p, ring tailRing, omBin bin)
Definition kInline.h:959
#define setmaxT
Definition kutil.h:34
#define KINLINE
Definition kutil.h:50
class sTObject TObject
Definition kutil.h:58
class sLObject LObject
Definition kutil.h:59
void mult(unsigned long *result, unsigned long *a, unsigned long *b, unsigned long p, int dega, int degb)
Definition minpoly.cc:647
int lcm(unsigned long *l, unsigned long *a, unsigned long *b, unsigned long p, int dega, int degb)
Definition minpoly.cc:709
#define assume(x)
Definition mod2.h:389
#define p_GetComp(p, r)
Definition monomials.h:64
#define pNext(p)
Definition monomials.h:36
#define pSetCoeff0(p, n)
Definition monomials.h:59
static number & pGetCoeff(poly p)
return an alias to the leading coefficient of p assumes that p != NULL NOTE: not copy
Definition monomials.h:44
The main handler for Singular numbers which are suitable for Singular polynomials.
Definition lq.h:40
#define nDelete(n)
Definition numbers.h:16
#define nInvers(a)
Definition numbers.h:33
#define nIsOne(n)
Definition numbers.h:25
#define nNormalize(n)
Definition numbers.h:30
#define omAlloc(size)
#define omAlloc0(size)
#define NULL
Definition omList.c:12
omBin_t * omBin
Definition omStructs.h:12
#define TEST_OPT_CONTENTSB
Definition options.h:129
p_Length
poly p_GetMaxExpP(poly p, const ring r)
return monomial r such that GetExp(r,i) is maximum of all monomials in p; coeff == 0,...
Definition p_polys.cc:1139
void p_Cleardenom_n(poly ph, const ring r, number &c)
Definition p_polys.cc:3002
void p_SimpleContent(poly ph, int smax, const ring r)
Definition p_polys.cc:2612
void p_Norm(poly p1, const ring r)
Definition p_polys.cc:3844
unsigned long p_GetShortExpVector(const poly p, const ring r)
Definition p_polys.cc:4947
void p_ProjectiveUnique(poly ph, const ring r)
Definition p_polys.cc:3191
poly p_Last(const poly p, int &l, const ring r)
Definition p_polys.cc:4788
static poly p_Neg(poly p, const ring r)
Definition p_polys.h:1114
static long p_GetExpDiff(poly p1, poly p2, int i, ring r)
Definition p_polys.h:637
BOOLEAN p_LmCheckPolyRing(poly p, ring r)
Definition pDebug.cc:123
static poly p_LmInit(poly p, const ring r)
Definition p_polys.h:1356
static long p_FDeg(const poly p, const ring r)
Definition p_polys.h:382
static unsigned long p_SetExp(poly p, const unsigned long e, const unsigned long iBitmask, const int VarOffset)
set a single variable exponent @Note: VarOffset encodes the position in p->exp
Definition p_polys.h:490
static long p_MinComp(poly p, ring lmRing, ring tailRing)
Definition p_polys.h:315
static void p_Setm(poly p, const ring r)
Definition p_polys.h:235
static poly p_LmShallowCopyDelete(poly p, const ring r)
Definition p_polys.h:1414
static long p_GetExp(const poly p, const unsigned long iBitmask, const int VarOffset)
get a single variable exponent @Note: the integer VarOffset encodes:
Definition p_polys.h:471
static poly p_Mult_nn(poly p, number n, const ring r)
Definition p_polys.h:960
static void p_Delete(poly *p, const ring r)
Definition p_polys.h:903
static void p_LmFree(poly p, ring)
Definition p_polys.h:685
static poly p_Minus_mm_Mult_qq(poly p, const poly m, const poly q, int &lp, int lq, const poly spNoether, const ring r)
Definition p_polys.h:1077
static poly p_Init(const ring r, omBin bin)
Definition p_polys.h:1341
static poly p_LmDeleteAndNext(poly p, const ring r)
Definition p_polys.h:757
static poly p_Copy(poly p, const ring r)
returns a copy of p
Definition p_polys.h:848
static long p_Totaldegree(poly p, const ring r)
Definition p_polys.h:1528
#define p_Test(p, r)
Definition p_polys.h:161
#define __p_Mult_nn(p, n, r)
Definition p_polys.h:973
VAR ring currRing
Widely used global variable which specifies the current polynomial ring for Singular interpreter and ...
Definition polys.cc:13
Compatibility layer for legacy polynomial operations (over currRing).
#define pLmShortDivisibleBy(a, sev_a, b, not_sev_b)
Divisibility tests based on Short Exponent vectors sev_a == pGetShortExpVector(a) not_sev_b == ~ pGet...
Definition polys.h:147
#define pGetShortExpVector(a)
returns the "Short Exponent Vector" – used to speed up divisibility tests (see polys-impl....
Definition polys.h:153
#define pNormalize(p)
Definition polys.h:318
kBucket * kBucket_pt
Definition ring.h:26
static BOOLEAN rIsSyzIndexRing(const ring r)
Definition ring.h:731
poly(* pShallowCopyDeleteProc)(poly s_p, ring source_r, ring dest_r, omBin dest_bin)
returns a poly from dest_r which is a ShallowCopy of s_p from source_r assumes that source_r->N == de...
Definition ring.h:45
#define rField_is_Ring(R)
Definition ring.h:491
int p_mFirstVblock(poly p, const ring ri)
Definition shiftop.cc:478
skStrategy * kStrategy
Definition structs.h:54
static poly normalize(poly next_p, ideal add_generators, syStrategy syzstr, int *g_l, int *p_l, int crit_comp)
Definition syz3.cc:1027