source: git/kernel/ideals.cc @ b533b3

spielwiese
Last change on this file since b533b3 was b533b3, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: simplify git-svn-id: file:///usr/local/Singular/svn/trunk@9737 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 73.2 KB
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: ideals.cc,v 1.35 2007-01-18 13:22:14 Singular Exp $ */
5/*
6* ABSTRACT - all basic methods to manipulate ideals
7*/
8
9/* includes */
10#include "mod2.h"
11#include "structs.h"
12#include "omalloc.h"
13#include "febase.h"
14#include "numbers.h"
15#include "polys.h"
16#include "ring.h"
17#include "kstd1.h"
18#include "matpol.h"
19#include "weight.h"
20#include "intvec.h"
21#include "syz.h"
22#include "sparsmat.h"
23#include "ideals.h"
24#include "prCopy.h"
25
26
27/* #define WITH_OLD_MINOR */
28#define pCopy_noCheck(p) pCopy(p)
29
30static poly * idpower;
31/*collects the monomials in makemonoms, must be allocated befor*/
32static int idpowerpoint;
33/*index of the actual monomial in idpower*/
34static poly * givenideal;
35/*the ideal from which a power is computed*/
36
37/*0 implementation*/
38
39/*2
40* initialise an ideal
41*/
42#ifdef PDEBUG
43ideal idDBInit(int idsize, int rank, char *f, int l)
44#else
45ideal idInit(int idsize, int rank)
46#endif
47{
48  /*- initialise an ideal -*/
49  ideal hh = (ideal )omAllocBin(sip_sideal_bin);
50  hh->nrows = 1;
51  hh->rank = rank;
52  IDELEMS(hh) = idsize;
53  if (idsize>0)
54  {
55    hh->m = (poly *)omAlloc0(idsize*sizeof(poly));
56  }
57  else
58    hh->m=NULL;
59  return hh;
60}
61
62//#ifndef __OPTIMIZE__
63// this is mainly for outputting an ideal within the debugger
64void idShow(ideal id)
65{
66  Print("Module of rank %d,real rank %d and %d generators.\n",
67         id->rank,idRankFreeModule(id),IDELEMS(id));
68  for (int i=0;i<id->ncols*id->nrows;i++)
69  {
70    if (id->m[i]!=NULL)
71    {
72      Print("generator %d: ",i);pWrite(id->m[i]);
73    }
74  }
75}
76//#endif
77
78/*2
79* initialise the maximal ideal (at 0)
80*/
81ideal idMaxIdeal (void)
82{
83  int l;
84  ideal hh=NULL;
85
86  hh=idInit(pVariables,1);
87  for (l=0; l<pVariables; l++)
88  {
89    hh->m[l] = pOne();
90    pSetExp(hh->m[l],l+1,1);
91    pSetm(hh->m[l]);
92  }
93  return hh;
94}
95
96/*2
97* deletes an ideal/matrix
98*/
99void id_Delete (ideal * h, ring r)
100{
101  int j,elems;
102  if (*h == NULL)
103    return;
104  elems=j=(*h)->nrows*(*h)->ncols;
105  if (j>0)
106  {
107    do
108    {
109      p_Delete(&((*h)->m[--j]), r);
110    }
111    while (j>0);
112    omFreeSize((ADDRESS)((*h)->m),sizeof(poly)*elems);
113  }
114  omFreeBin((ADDRESS)*h, sip_sideal_bin);
115  *h=NULL;
116}
117
118
119/*2
120* Shallowdeletes an ideal/matrix
121*/
122void id_ShallowDelete (ideal *h, ring r)
123{
124  int j,elems;
125  if (*h == NULL)
126    return;
127  elems=j=(*h)->nrows*(*h)->ncols;
128  if (j>0)
129  {
130    do
131    {
132      p_ShallowDelete(&((*h)->m[--j]), r);
133    }
134    while (j>0);
135    omFreeSize((ADDRESS)((*h)->m),sizeof(poly)*elems);
136  }
137  omFreeBin((ADDRESS)*h, sip_sideal_bin);
138  *h=NULL;
139}
140
141/*2
142*gives an ideal the minimal possible size
143*/
144void idSkipZeroes (ideal ide)
145{
146  int k;
147  int j = -1;
148  BOOLEAN change=FALSE;
149  for (k=0; k<IDELEMS(ide); k++)
150  {
151    if (ide->m[k] != NULL)
152    {
153      j++;
154      if (change)
155      {
156        ide->m[j] = ide->m[k];
157      }
158    }
159    else
160    {
161      change=TRUE;
162    }
163  }
164  if (change)
165  {
166    if (j == -1)
167      j = 0;
168    else
169    {
170      for (k=j+1; k<IDELEMS(ide); k++)
171        ide->m[k] = NULL;
172    }
173    pEnlargeSet(&(ide->m),IDELEMS(ide),j+1-IDELEMS(ide));
174    IDELEMS(ide) = j+1;
175  }
176}
177
178/*2
179* ideal id = (id[i])
180* result is leadcoeff(id[i]) = 1
181*/
182void idNorm(ideal id)
183{
184  for (int i=IDELEMS(id)-1; i>-0; i--)
185  {
186    if (id->m[i] != NULL)
187    {
188      pNorm(id->m[i]);
189    }
190  }
191}
192
193/*2
194* ideal id = (id[i]), c any number
195* if id[i] = c*id[j] then id[j] is deleted for j > i
196*/
197void idDelMultiples(ideal id)
198{
199  int i, j, t;
200  int k = IDELEMS(id), l = k;
201  for (i=k-1; i>=0; i--)
202  {
203    if (id->m[i]!=NULL)
204    {
205      for (j=k-1; j>i; j--)
206      {
207        if (id->m[j]!=NULL)
208        {
209          if(pComparePolys(id->m[i], id->m[j]))
210          {
211            pDelete(&id->m[j]);
212          }
213        }
214      }
215    }
216  }
217}
218
219/*2
220* ideal id = (id[i])
221* if id[i] = id[j] then id[j] is deleted for j > i
222*/
223void idDelEquals(ideal id)
224{
225  int i, j, t;
226  int k = IDELEMS(id), l = k;
227  for (i=k-1; i>=0; i--)
228  {
229    if (id->m[i]!=NULL)
230    {
231      for (j=k-1; j>i; j--)
232      {
233        if ((id->m[j]!=NULL)
234        && (pEqualPolys(id->m[i], id->m[j])))
235        {
236          pDelete(&id->m[j]);
237        }
238      }
239    }
240  }
241}
242
243//
244// Delete id[j], if Lm(j) == Lm(i) and j > i
245//
246void idDelLmEquals(ideal id)
247{
248  int i, j, t;
249  int k = IDELEMS(id);
250  for (i=k-1; i>=0; i--)
251  {
252    if (id->m[i] != NULL)
253    {
254      for (j=k-1; j>i; j--)
255      {
256        if ((id->m[j] != NULL)
257        && pLmEqual(id->m[i], id->m[j]))
258        {
259          pDelete(&id->m[j]);
260        }
261      }
262    }
263  }
264}
265
266void idDelDiv(ideal id)
267{
268  int i, j, t;
269  int k = IDELEMS(id), l = k;
270  for (i=k-1; i>=0; i--)
271  {
272    if (id->m[i] != NULL)
273    {
274      for (j=k-1; j>i; j--)
275      {
276        if (id->m[j]!=NULL)
277        {
278          if(pDivisibleBy(id->m[i], id->m[j]))
279          {
280            pDelete(&id->m[j]);
281          }
282          else if(pDivisibleBy(id->m[j], id->m[i]))
283          {
284            pDelete(&id->m[i]);
285          }
286        }
287      }
288    }
289  }
290}
291
292/*2
293*test if the ideal has only constant polynomials
294*/
295BOOLEAN idIsConstant(ideal id)
296{
297  int k;
298  for (k = IDELEMS(id)-1; k>=0; k--)
299  {
300    if (pIsConstantPoly(id->m[k]) == FALSE)
301      return FALSE;
302  }
303  return TRUE;
304}
305
306/*2
307* copy an ideal
308*/
309#ifdef PDEBUG
310ideal idDBCopy(ideal h1,char *f,int l)
311{
312  int i;
313  ideal h2;
314
315  idDBTest(h1,PDEBUG,f,l);
316//#ifdef TEST
317  if (h1 == NULL)
318  {
319    h2=idDBInit(1,1,f,l);
320  }
321  else
322//#endif
323  {
324    h2=idDBInit(IDELEMS(h1),h1->rank,f,l);
325    for (i=IDELEMS(h1)-1; i>=0; i--)
326      h2->m[i] = pCopy(h1->m[i]);
327  }
328  return h2;
329}
330#endif
331
332ideal id_Copy (ideal h1, const ring r)
333{
334  int i;
335  ideal h2;
336
337//#ifdef TEST
338  if (h1 == NULL)
339  {
340    h2=idInit(1,1);
341  }
342  else
343//#endif
344  {
345    h2=idInit(IDELEMS(h1),h1->rank);
346    for (i=IDELEMS(h1)-1; i>=0; i--)
347      h2->m[i] = p_Copy(h1->m[i],r);
348  }
349  return h2;
350}
351
352#ifdef PDEBUG
353void idDBTest(ideal h1, int level, char *f,int l)
354{
355  int i;
356
357  if (h1 != NULL)
358  {
359    // assume(IDELEMS(h1) > 0); for ideal/module, does not apply to matrix
360    omCheckAddrSize(h1,sizeof(*h1));
361    omdebugAddrSize(h1->m,h1->ncols*h1->nrows*sizeof(poly));
362    /* to be able to test matrices: */
363    for (i=(h1->ncols*h1->nrows)-1; i>=0; i--)
364      _p_Test(h1->m[i], currRing, level);
365    int new_rk=idRankFreeModule(h1);
366    if(new_rk > h1->rank)
367    {
368      dReportError("wrong rank %d (should be %d) in %s:%d\n",
369                   h1->rank, new_rk, f,l);
370      omPrintAddrInfo(stderr, h1, " for ideal");
371      h1->rank=new_rk;
372    }
373  }
374}
375#endif
376
377/*3
378* for idSort: compare a and b revlex inclusive module comp.
379*/
380static int pComp_RevLex(poly a, poly b,BOOLEAN nolex)
381{
382  if (b==NULL) return 1;
383  if (a==NULL) return -1;
384
385  if (nolex) return pLmCmp(a,b);
386  int l=pVariables;
387  while ((l>0) && (pGetExp(a,l)==pGetExp(b,l))) l--;
388  if (l==0)
389  {
390    if (pGetComp(a)==pGetComp(b)) return 0;
391    if (pGetComp(a)>pGetComp(b)) return 1;
392  }
393  else if (pGetExp(a,l)>pGetExp(b,l))
394    return 1;
395  return -1;
396}
397
398/*2
399*sorts the ideal w.r.t. the actual ringordering
400*uses lex-ordering when nolex = FALSE
401*/
402intvec *idSort(ideal id,BOOLEAN nolex)
403{
404  poly p,q;
405  intvec * result = new intvec(IDELEMS(id));
406  int i, j, actpos=0, newpos, l;
407  int diff, olddiff, lastcomp, newcomp;
408  BOOLEAN notFound;
409
410  for (i=0;i<IDELEMS(id);i++)
411  {
412    if (id->m[i]!=NULL)
413    {
414      notFound = TRUE;
415      newpos = actpos / 2;
416      diff = (actpos+1) / 2;
417      diff = (diff+1) / 2;
418      lastcomp = pComp_RevLex(id->m[i],id->m[(*result)[newpos]],nolex);
419      if (lastcomp<0)
420      {
421        newpos -= diff;
422      }
423      else if (lastcomp>0)
424      {
425        newpos += diff;
426      }
427      else
428      {
429        notFound = FALSE;
430      }
431      //while ((newpos>=0) && (newpos<actpos) && (notFound))
432      while (notFound && (newpos>=0) && (newpos<actpos))
433      {
434        newcomp = pComp_RevLex(id->m[i],id->m[(*result)[newpos]],nolex);
435        olddiff = diff;
436        if (diff>1)
437        {
438          diff = (diff+1) / 2;
439          if ((newcomp==1)
440          && (actpos-newpos>1)
441          && (diff>1)
442          && (newpos+diff>=actpos))
443          {
444            diff = actpos-newpos-1;
445          }
446          else if ((newcomp==-1)
447          && (diff>1)
448          && (newpos<diff))
449          {
450            diff = newpos;
451          }
452        }
453        if (newcomp<0)
454        {
455          if ((olddiff==1) && (lastcomp>0))
456            notFound = FALSE;
457          else
458            newpos -= diff;
459        }
460        else if (newcomp>0)
461        {
462          if ((olddiff==1) && (lastcomp<0))
463          {
464            notFound = FALSE;
465            newpos++;
466          }
467          else
468          {
469            newpos += diff;
470          }
471        }
472        else
473        {
474          notFound = FALSE;
475        }
476        lastcomp = newcomp;
477        if (diff==0) notFound=FALSE; /*hs*/
478      }
479      if (newpos<0) newpos = 0;
480      if (newpos>actpos) newpos = actpos;
481      while ((newpos<actpos) && (pComp_RevLex(id->m[i],id->m[(*result)[newpos]],nolex)==0))
482        newpos++;
483      for (j=actpos;j>newpos;j--)
484      {
485        (*result)[j] = (*result)[j-1];
486      }
487      (*result)[newpos] = i;
488      actpos++;
489    }
490  }
491  for (j=0;j<actpos;j++) (*result)[j]++;
492  return result;
493}
494
495/*2
496* concat the lists h1 and h2 without zeros
497*/
498ideal idSimpleAdd (ideal h1,ideal h2)
499{
500  int i,j,r,l;
501  ideal result;
502
503  if (h1==NULL) return idCopy(h2);
504  if (h2==NULL) return idCopy(h1);
505  j = IDELEMS(h1)-1;
506  while ((j >= 0) && (h1->m[j] == NULL)) j--;
507  i = IDELEMS(h2)-1;
508  while ((i >= 0) && (h2->m[i] == NULL)) i--;
509  r = si_max(h1->rank,h2->rank);
510  if (i+j==(-2))
511    return idInit(1,r);
512  else
513    result=idInit(i+j+2,r);
514  for (l=j; l>=0; l--)
515  {
516    result->m[l] = pCopy(h1->m[l]);
517  }
518  r = i+j+1;
519  for (l=i; l>=0; l--, r--)
520  {
521    result->m[r] = pCopy(h2->m[l]);
522  }
523  return result;
524}
525
526/*2
527* h1 + h2
528*/
529ideal idAdd (ideal h1,ideal h2)
530{
531  ideal result = idSimpleAdd(h1,h2);
532  idCompactify(result);
533  return result;
534}
535
536/*2
537* h1 * h2
538*/
539ideal  idMult (ideal h1,ideal  h2)
540{
541  int i,j,k;
542  ideal  hh;
543
544  j = IDELEMS(h1);
545  while ((j > 0) && (h1->m[j-1] == NULL)) j--;
546  i = IDELEMS(h2);
547  while ((i > 0) && (h2->m[i-1] == NULL)) i--;
548  j = j * i;
549  if (j == 0)
550    hh = idInit(1,1);
551  else
552    hh=idInit(j,1);
553  if (h1->rank<h2->rank)
554    hh->rank = h2->rank;
555  else
556    hh->rank = h1->rank;
557  if (j==0) return hh;
558  k = 0;
559  for (i=0; i<IDELEMS(h1); i++)
560  {
561    if (h1->m[i] != NULL)
562    {
563      for (j=0; j<IDELEMS(h2); j++)
564      {
565        if (h2->m[j] != NULL)
566        {
567          hh->m[k] = ppMult_qq(h1->m[i],h2->m[j]);
568          k++;
569        }
570      }
571    }
572  }
573  {
574    idCompactify(hh);
575    return hh;
576  }
577}
578
579/*2
580*returns true if h is the zero ideal
581*/
582BOOLEAN idIs0 (ideal h)
583{
584  int i;
585
586  if (h == NULL) return TRUE;
587  i = IDELEMS(h);
588  while ((i > 0) && (h->m[i-1] == NULL))
589  {
590    i--;
591  }
592  if (i == 0)
593    return TRUE;
594  else
595    return FALSE;
596}
597
598/*2
599* return the maximal component number found in any polynomial in s
600*/
601long idRankFreeModule (ideal s, ring lmRing, ring tailRing)
602{
603  if (s!=NULL)
604  {
605    int  j=0;
606
607    if (rRing_has_Comp(tailRing) && rRing_has_Comp(lmRing))
608    {
609      int  l=IDELEMS(s);
610      poly *p=s->m;
611      int  k;
612      for (; l != 0; l--)
613      {
614        if (*p!=NULL)
615        {
616          pp_Test(*p, lmRing, tailRing);
617          k = p_MaxComp(*p, lmRing, tailRing);
618          if (k>j) j = k;
619        }
620        p++;
621      }
622    }
623    return j;
624  }
625  return -1;
626}
627
628BOOLEAN idIsModule(ideal id, ring r)
629{
630  if (id != NULL && rRing_has_Comp(r))
631  {
632    int j, l = IDELEMS(id);
633    for (j=0; j<l; j++)
634    {
635      if (id->m[j] != NULL && p_GetComp(id->m[j], r) > 0) return TRUE;
636    }
637  }
638  return FALSE;
639}
640
641
642/*2
643*returns true if id is homogenous with respect to the aktual weights
644*/
645BOOLEAN idHomIdeal (ideal id, ideal Q)
646{
647  int i;
648  BOOLEAN     b;
649  if ((id == NULL) || (IDELEMS(id) == 0)) return TRUE;
650  i = 0;
651  b = TRUE;
652  while ((i < IDELEMS(id)) && b)
653  {
654    b = pIsHomogeneous(id->m[i]);
655    i++;
656  }
657  if ((b) && (Q!=NULL) && (IDELEMS(Q)>0))
658  {
659    i=0;
660    while ((i < IDELEMS(Q)) && b)
661    {
662      b = pIsHomogeneous(Q->m[i]);
663      i++;
664    }
665  }
666  return b;
667}
668
669/*2
670*returns a minimized set of generators of h1
671*/
672ideal idMinBase (ideal h1)
673{
674  ideal h2, h3,h4,e;
675  int j,k;
676  int i,l,ll;
677  intvec * wth;
678  BOOLEAN homog;
679
680  homog = idHomModule(h1,currQuotient,&wth);
681  if ((currRing->OrdSgn == 1) && (!homog))
682  {
683    Warn("minbase applies only to the local or homogeneous case");
684    e=idCopy(h1);
685    return e;
686  }
687  if ((currRing->OrdSgn == 1) && (homog))
688  {
689    ideal re=kMin_std(h1,currQuotient,(tHomog)homog,&wth,h2,NULL,0,3);
690    idDelete(&re);
691    return h2;
692  }
693  e=idInit(1,h1->rank);
694  if (idIs0(h1))
695  {
696    return e;
697  }
698  pEnlargeSet(&(e->m),IDELEMS(e),15);
699  IDELEMS(e) = 16;
700  h2 = kStd(h1,currQuotient,isNotHomog,NULL);
701  h3 = idMaxIdeal();
702  h4=idMult(h2,h3);
703  idDelete(&h3);
704  h3=kStd(h4,currQuotient,isNotHomog,NULL);
705  k = IDELEMS(h3);
706  while ((k > 0) && (h3->m[k-1] == NULL)) k--;
707  j = -1;
708  l = IDELEMS(h2);
709  while ((l > 0) && (h2->m[l-1] == NULL)) l--;
710  for (i=l-1; i>=0; i--)
711  {
712    if (h2->m[i] != NULL)
713    {
714      ll = 0;
715      while ((ll < k) && ((h3->m[ll] == NULL)
716      || !pDivisibleBy(h3->m[ll],h2->m[i])))
717        ll++;
718      if (ll >= k)
719      {
720        j++;
721        if (j > IDELEMS(e)-1)
722        {
723          pEnlargeSet(&(e->m),IDELEMS(e),16);
724          IDELEMS(e) += 16;
725        }
726        e->m[j] = pCopy(h2->m[i]);
727      }
728    }
729  }
730  idDelete(&h2);
731  idDelete(&h3);
732  idDelete(&h4);
733  if (currQuotient!=NULL)
734  {
735    h3=idInit(1,e->rank);
736    h2=kNF(h3,currQuotient,e);
737    idDelete(&h3);
738    idDelete(&e);
739    e=h2;
740  }
741  idSkipZeroes(e);
742  return e;
743}
744
745/*2
746*the minimal index of used variables - 1
747*/
748int pLowVar (poly p)
749{
750  int k,l,lex;
751
752  if (p == NULL) return -1;
753
754  k = 32000;/*a very large dummy value*/
755  while (p != NULL)
756  {
757    l = 1;
758    lex = pGetExp(p,l);
759    while ((l < pVariables) && (lex == 0))
760    {
761      l++;
762      lex = pGetExp(p,l);
763    }
764    l--;
765    if (l < k) k = l;
766    pIter(p);
767  }
768  return k;
769}
770
771/*3
772*multiplies p with t (!cas) or  (t-1)
773*the index of t is:1, so we have to shift all variables
774*p is NOT in the actual ring, it has no t
775*/
776static poly pMultWithT (poly p,BOOLEAN cas)
777{
778  /*qp is the working pointer in p*/
779  /*result is the result, qresult is the working pointer*/
780  /*pp is p in the actual ring(shifted), qpp the working pointer*/
781  poly result,qp,pp;
782  poly qresult=NULL;
783  poly qpp=NULL;
784  int  i,j,lex;
785  number n;
786
787  pp = NULL;
788  result = NULL;
789  qp = p;
790  while (qp != NULL)
791  {
792    i = 0;
793    if (result == NULL)
794    {/*first monomial*/
795      result = pInit();
796      qresult = result;
797    }
798    else
799    {
800      qresult->next = pInit();
801      pIter(qresult);
802    }
803    for (j=pVariables-1; j>0; j--)
804    {
805      lex = pGetExp(qp,j);
806      pSetExp(qresult,j+1,lex);/*copy all variables*/
807    }
808    lex = pGetComp(qp);
809    pSetComp(qresult,lex);
810    n=nCopy(pGetCoeff(qp));
811    pSetCoeff0(qresult,n);
812    qresult->next = NULL;
813    pSetm(qresult);
814    /*qresult is now qp brought into the actual ring*/
815    if (cas)
816    { /*case: mult with t-1*/
817      pSetExp(qresult,1,0);
818      pSetm(qresult);
819      if (pp == NULL)
820      { /*first monomial*/
821        pp = pCopy(qresult);
822        qpp = pp;
823      }
824      else
825      {
826        qpp->next = pCopy(qresult);
827        pIter(qpp);
828      }
829      pGetCoeff(qpp)=nNeg(pGetCoeff(qpp));
830      /*now qpp contains -1*qp*/
831    }
832    pSetExp(qresult,1,1);/*this is mult. by t*/
833    pSetm(qresult);
834    pIter(qp);
835  }
836  /*
837  *now p is processed:
838  *result contains t*p
839  * if cas: pp contains -1*p (in the new ring)
840  */
841  if (cas)  qresult->next = pp;
842  /*  else      qresult->next = NULL;*/
843  return result;
844}
845
846/*2
847*dehomogenized the generators of the ideal id1 with the leading
848*monomial of p replaced by n
849*/
850ideal idDehomogen (ideal id1,poly p,number n)
851{
852  int i;
853  ideal result;
854
855  if (idIs0(id1))
856  {
857    return idInit(1,id1->rank);
858  }
859  result=idInit(IDELEMS(id1),id1->rank);
860  for (i=0; i<IDELEMS(id1); i++)
861  {
862    result->m[i] = pDehomogen(id1->m[i],p,n);
863  }
864  return result;
865}
866
867/*2
868* verschiebt die Indizees der Modulerzeugenden um i
869*/
870void pShift (poly * p,int i)
871{
872  poly qp1 = *p,qp2 = *p;/*working pointers*/
873  int     j = pMaxComp(*p),k = pMinComp(*p);
874
875  if (j+i < 0) return ;
876  while (qp1 != NULL)
877  {
878    if ((pGetComp(qp1)+i > 0) || ((j == -i) && (j == k)))
879    {
880      pSetComp(qp1,pGetComp(qp1)+i);
881      pSetmComp(qp1);
882      qp2 = qp1;
883      pIter(qp1);
884    }
885    else
886    {
887      if (qp2 == *p)
888      {
889        pIter(*p);
890        pDeleteLm(&qp2);
891        qp2 = *p;
892        qp1 = *p;
893      }
894      else
895      {
896        qp2->next = qp1->next;
897        pDeleteLm(&qp1);
898        qp1 = qp2->next;
899      }
900    }
901  }
902}
903
904/*2
905*initialized a field with r numbers between beg and end for the
906*procedure idNextChoise
907*/
908void idInitChoise (int r,int beg,int end,BOOLEAN  *endch,int * choise)
909{
910  /*returns the first choise of r numbers between beg and end*/
911  int i;
912  for (i=0; i<r; i++)
913  {
914    choise[i] = 0;
915  }
916  if (r <= end-beg+1)
917    for (i=0; i<r; i++)
918    {
919      choise[i] = beg+i;
920    }
921  if (r > end-beg+1)
922    *endch = TRUE;
923  else
924    *endch = FALSE;
925}
926
927/*2
928*returns the next choise of r numbers between beg and end
929*/
930void idGetNextChoise (int r,int end,BOOLEAN  *endch,int * choise)
931{
932  int i = r-1,j;
933  while ((i >= 0) && (choise[i] == end))
934  {
935    i--;
936    end--;
937  }
938  if (i == -1)
939    *endch = TRUE;
940  else
941  {
942    choise[i]++;
943    for (j=i+1; j<r; j++)
944    {
945      choise[j] = choise[i]+j-i;
946    }
947    *endch = FALSE;
948  }
949}
950
951/*2
952*takes the field choise of d numbers between beg and end, cancels the t-th
953*entree and searches for the ordinal number of that d-1 dimensional field
954* w.r.t. the algorithm of construction
955*/
956int idGetNumberOfChoise(int t, int d, int begin, int end, int * choise)
957{
958  int * localchoise,i,result=0;
959  BOOLEAN b=FALSE;
960
961  if (d<=1) return 1;
962  localchoise=(int*)omAlloc((d-1)*sizeof(int));
963  idInitChoise(d-1,begin,end,&b,localchoise);
964  while (!b)
965  {
966    result++;
967    i = 0;
968    while ((i<t) && (localchoise[i]==choise[i])) i++;
969    if (i>=t)
970    {
971      i = t+1;
972      while ((i<d) && (localchoise[i-1]==choise[i])) i++;
973      if (i>=d)
974      {
975        omFreeSize((ADDRESS)localchoise,(d-1)*sizeof(int));
976        return result;
977      }
978    }
979    idGetNextChoise(d-1,end,&b,localchoise);
980  }
981  omFreeSize((ADDRESS)localchoise,(d-1)*sizeof(int));
982  return 0;
983}
984
985/*2
986*computes the binomial coefficient
987*/
988int binom (int n,int r)
989{
990  int i,result;
991
992  if (r==0) return 1;
993  if (n-r<r) return binom(n,n-r);
994  result = n-r+1;
995  for (i=2;i<=r;i++)
996  {
997    result *= n-r+i;
998    if (result<0)
999    {
1000      WarnS("overflow in binomials");
1001      return 0;
1002    }
1003    result /= i;
1004  }
1005  return result;
1006}
1007
1008/*2
1009*the free module of rank i
1010*/
1011ideal idFreeModule (int i)
1012{
1013  int j;
1014  ideal h;
1015
1016  h=idInit(i,i);
1017  for (j=0; j<i; j++)
1018  {
1019    h->m[j] = pOne();
1020    pSetComp(h->m[j],j+1);
1021    pSetmComp(h->m[j]);
1022  }
1023  return h;
1024}
1025
1026/*2
1027* h3 := h1 intersect h2
1028*/
1029ideal idSect (ideal h1,ideal h2)
1030{
1031  ideal first=h2,second=h1,temp,temp1,result;
1032  int i,j,k,flength,slength,length,rank=si_min(h1->rank,h2->rank);
1033  intvec *w;
1034  poly p,q;
1035
1036  if ((idIs0(h1)) && (idIs0(h2)))  return idInit(1,rank);
1037  if (IDELEMS(h1)<IDELEMS(h2))
1038  {
1039    first = h1;
1040    second = h2;
1041  }
1042  flength = idRankFreeModule(first);
1043  slength = idRankFreeModule(second);
1044  length  = si_max(flength,slength);
1045  if (length==0)
1046  {
1047    length = 1;
1048  }
1049  j = IDELEMS(first);
1050  temp = idInit(j /*IDELEMS(first)*/,length+j);
1051
1052  ring orig_ring=currRing;
1053  ring syz_ring=rCurrRingAssure_SyzComp();
1054  rSetSyzComp(length);
1055
1056  while ((j>0) && (first->m[j-1]==NULL)) j--;
1057  k = 0;
1058  for (i=0;i<j;i++)
1059  {
1060    if (first->m[i]!=NULL)
1061    {
1062      if (syz_ring==orig_ring)
1063        temp->m[k] = pCopy(first->m[i]);
1064      else
1065        temp->m[k] = prCopyR(first->m[i], orig_ring);
1066      q = pOne();
1067      pSetComp(q,i+1+length);
1068      pSetmComp(q);
1069      if (flength==0) pShift(&(temp->m[k]),1);
1070      p = temp->m[k];
1071      while (pNext(p)!=NULL) pIter(p);
1072      pNext(p) = q;
1073      k++;
1074    }
1075  }
1076  pEnlargeSet(&(temp->m),IDELEMS(temp),j+IDELEMS(second)-IDELEMS(temp));
1077  IDELEMS(temp) = j+IDELEMS(second);
1078  for (i=0;i<IDELEMS(second);i++)
1079  {
1080    if (second->m[i]!=NULL)
1081    {
1082      if (syz_ring==orig_ring)
1083        temp->m[k] = pCopy(second->m[i]);
1084      else
1085        temp->m[k] = prCopyR(second->m[i], orig_ring);
1086      if (slength==0) pShift(&(temp->m[k]),1);
1087      k++;
1088    }
1089  }
1090  temp1 = kStd(temp,currQuotient,testHomog,&w,NULL,length);
1091  if (w!=NULL) delete w;
1092  idDelete(&temp);
1093
1094  if(syz_ring!=orig_ring)
1095    rChangeCurrRing(orig_ring);
1096
1097  result = idInit(IDELEMS(temp1),rank);
1098  j = 0;
1099  for (i=0;i<IDELEMS(temp1);i++)
1100  {
1101    if ((temp1->m[i]!=NULL)
1102    && (p_GetComp(temp1->m[i],syz_ring)>length))
1103    {
1104      if(syz_ring==orig_ring)
1105        p = pCopy(temp1->m[i]);
1106      else
1107        p = prCopyR(temp1->m[i], syz_ring);
1108      while (p!=NULL)
1109      {
1110        q = pNext(p);
1111        pNext(p) = NULL;
1112        k = pGetComp(p)-1-length;
1113        pSetComp(p,0);
1114        pSetmComp(p);
1115        /* Warning! multiply only from the left! it's very important for Plural */
1116        result->m[j] = pAdd(result->m[j],pMult(p,pCopy(first->m[k])));
1117        p = q;
1118      }
1119      j++;
1120    }
1121  }
1122  if(syz_ring!=orig_ring)
1123  {
1124    rChangeCurrRing(syz_ring);
1125    idDelete(&temp1);
1126    rChangeCurrRing(orig_ring);
1127    rKill(syz_ring);
1128  }
1129  else
1130  {
1131    idDelete(&temp1);
1132  }
1133
1134  idSkipZeroes(result);
1135  return result;
1136}
1137
1138/*2
1139* ideal/module intersection for a list of objects
1140* given as 'resolvente'
1141*/
1142ideal idMultSect(resolvente arg, int length)
1143{
1144  int i,j=0,k=0,syzComp,l,maxrk=-1,realrki;
1145  ideal bigmat,tempstd,result;
1146  poly p;
1147  int isIdeal=0;
1148  intvec * w=NULL;
1149
1150  /* find 0-ideals and max rank -----------------------------------*/
1151  for (i=0;i<length;i++)
1152  {
1153    if (!idIs0(arg[i]))
1154    {
1155      realrki=idRankFreeModule(arg[i]);
1156      k++;
1157      j += IDELEMS(arg[i]);
1158      if (realrki>maxrk) maxrk = realrki;
1159    }
1160    else
1161    {
1162      if (arg[i]!=NULL)
1163      {
1164        return idInit(1,arg[i]->rank);
1165      }
1166    }
1167  }
1168  if (maxrk == 0)
1169  {
1170    isIdeal = 1;
1171    maxrk = 1;
1172  }
1173  /* init -----------------------------------------------------------*/
1174  j += maxrk;
1175  syzComp = k*maxrk;
1176
1177  ring orig_ring=currRing;
1178  ring syz_ring=rCurrRingAssure_SyzComp();
1179  rSetSyzComp(syzComp);
1180
1181  bigmat = idInit(j,(k+1)*maxrk);
1182  /* create unit matrices ------------------------------------------*/
1183  for (i=0;i<maxrk;i++)
1184  {
1185    for (j=0;j<=k;j++)
1186    {
1187      p = pOne();
1188      pSetComp(p,i+1+j*maxrk);
1189      pSetmComp(p);
1190      bigmat->m[i] = pAdd(bigmat->m[i],p);
1191    }
1192  }
1193  /* enter given ideals ------------------------------------------*/
1194  i = maxrk;
1195  k = 0;
1196  for (j=0;j<length;j++)
1197  {
1198    if (arg[j]!=NULL)
1199    {
1200      for (l=0;l<IDELEMS(arg[j]);l++)
1201      {
1202        if (arg[j]->m[l]!=NULL)
1203        {
1204          if (syz_ring==orig_ring)
1205            bigmat->m[i] = pCopy(arg[j]->m[l]);
1206          else
1207            bigmat->m[i] = prCopyR(arg[j]->m[l], orig_ring);
1208          pShift(&(bigmat->m[i]),k*maxrk+isIdeal);
1209          i++;
1210        }
1211      }
1212      k++;
1213    }
1214  }
1215  /* std computation --------------------------------------------*/
1216  tempstd = kStd(bigmat,currQuotient,testHomog,&w,NULL,syzComp);
1217  if (w!=NULL) delete w;
1218  idDelete(&bigmat);
1219
1220  if(syz_ring!=orig_ring)
1221    rChangeCurrRing(orig_ring);
1222
1223  /* interprete result ----------------------------------------*/
1224  result = idInit(8,maxrk);
1225  k = 0;
1226  for (j=0;j<IDELEMS(tempstd);j++)
1227  {
1228    if ((tempstd->m[j]!=NULL) && (p_GetComp(tempstd->m[j],syz_ring)>syzComp))
1229    {
1230      if (k>=IDELEMS(result))
1231      {
1232        pEnlargeSet(&(result->m),IDELEMS(result),8);
1233        IDELEMS(result) += 8;
1234      }
1235      if (syz_ring==orig_ring)
1236        p = pCopy(tempstd->m[j]);
1237      else
1238        p = prCopyR(tempstd->m[j], syz_ring);
1239      pShift(&p,-syzComp-isIdeal);
1240      result->m[k] = p;
1241      k++;
1242    }
1243  }
1244  /* clean up ----------------------------------------------------*/
1245  if(syz_ring!=orig_ring)
1246    rChangeCurrRing(syz_ring);
1247  idDelete(&tempstd);
1248  if(syz_ring!=orig_ring)
1249  {
1250    rChangeCurrRing(orig_ring);
1251    rKill(syz_ring);
1252  }
1253  idSkipZeroes(result);
1254  return result;
1255}
1256
1257/*2
1258*computes syzygies of h1,
1259*if quot != NULL it computes in the quotient ring modulo "quot"
1260*works always in a ring with ringorder_s
1261*/
1262static ideal idPrepare (ideal  h1, tHomog h, int syzcomp, intvec **w)
1263{
1264  ideal   h2, h3;
1265  int     i;
1266  int     j,jj=0,k;
1267  poly    p,q;
1268
1269  if (idIs0(h1)) return NULL;
1270  k = idRankFreeModule(h1);
1271  h2=idCopy(h1);
1272  i = IDELEMS(h2)-1;
1273  if (k == 0)
1274  {
1275    for (j=0; j<=i; j++) pShift(&(h2->m[j]),1);
1276    k = 1;
1277  }
1278  if (syzcomp<k)
1279  {
1280    Warn("syzcomp too low, should be %d instead of %d",k,syzcomp);
1281    syzcomp = k;
1282    rSetSyzComp(k);
1283  }
1284  h2->rank = syzcomp+i+1;
1285  for (j=0; j<=i; j++)
1286  {
1287    p = h2->m[j];
1288    q = pOne();
1289    pSetComp(q,syzcomp+1+j);
1290    pSetmComp(q);
1291    if (p!=NULL)
1292    {
1293      while (pNext(p)) pIter(p);
1294      p->next = q;
1295    }
1296    else
1297      h2->m[j]=q;
1298  }
1299
1300#ifdef PDEBUG
1301  for(j=0;j<IDELEMS(h2);j++) pTest(h2->m[j]);
1302#endif
1303  h3=kStd(h2,currQuotient,h,w,NULL,syzcomp);
1304  idDelete(&h2);
1305  return h3;
1306}
1307
1308/*2
1309* compute the syzygies of h1 in R/quot,
1310* weights of components are in w
1311* if setRegularity, return the regularity in deg
1312* do not change h1,  w
1313*/
1314ideal idSyzygies (ideal  h1, tHomog h,intvec **w, BOOLEAN setSyzComp,
1315                  BOOLEAN setRegularity, int *deg)
1316{
1317  ideal s_h1;
1318  poly  p;
1319  int   j, k, length=0,reg;
1320  BOOLEAN isMonomial=TRUE;
1321  int ii, idElemens_h1;
1322
1323  idElemens_h1=IDELEMS(h1);
1324#ifdef PDEBUG
1325  for(ii=0;ii<idElemens_h1 /*IDELEMS(h1)*/;ii++) pTest(h1->m[ii]);
1326#endif
1327  if (idIs0(h1))
1328  {
1329    ideal result=idFreeModule(idElemens_h1/*IDELEMS(h1)*/);
1330    int curr_syz_limit=rGetCurrSyzLimit();
1331    if (curr_syz_limit>0)
1332    for (ii=0;ii<idElemens_h1/*IDELEMS(h1)*/;ii++)
1333    {
1334      if (h1->m[ii]!=NULL)
1335        pShift(&h1->m[ii],curr_syz_limit);
1336    }
1337    return result;
1338  }
1339  int slength=(int)idRankFreeModule(h1);
1340  k=si_max(1,slength /*idRankFreeModule(h1)*/);
1341
1342  assume(currRing != NULL);
1343  ring orig_ring=currRing;
1344  ring syz_ring=rCurrRingAssure_SyzComp();
1345
1346  if (setSyzComp)
1347    rSetSyzComp(k);
1348
1349  if (orig_ring != syz_ring)
1350  {
1351    s_h1=idrCopyR_NoSort(h1,orig_ring);
1352  }
1353  else
1354  {
1355    s_h1 = h1;
1356  }
1357
1358  ideal s_h3=idPrepare(s_h1,h,k,w);
1359
1360  if (s_h3==NULL)
1361  {
1362    return idFreeModule( idElemens_h1 /*IDELEMS(h1)*/);
1363  }
1364
1365  if (orig_ring != syz_ring)
1366  {
1367    idDelete(&s_h1);
1368    for (j=0; j<IDELEMS(s_h3); j++)
1369    {
1370      if (s_h3->m[j] != NULL)
1371      {
1372        if (p_MinComp(s_h3->m[j],syz_ring) > k)
1373          pShift(&s_h3->m[j], -k);
1374        else
1375          pDelete(&s_h3->m[j]);
1376      }
1377    }
1378    idSkipZeroes(s_h3);
1379    s_h3->rank -= k;
1380    rChangeCurrRing(orig_ring);
1381    s_h3 = idrMoveR_NoSort(s_h3, syz_ring);
1382    rKill(syz_ring);
1383    idTest(s_h3);
1384    return s_h3;
1385  }
1386
1387  ideal e = idInit(IDELEMS(s_h3), s_h3->rank);
1388
1389  for (j=0; j<IDELEMS(s_h3); j++)
1390  {
1391    if (s_h3->m[j] != NULL)
1392    {
1393      if (p_MinComp(s_h3->m[j],syz_ring) <= k)
1394      {
1395        e->m[j] = s_h3->m[j];
1396        isMonomial=isMonomial && (pNext(s_h3->m[j])==NULL);
1397        pDelete(&pNext(s_h3->m[j]));
1398        s_h3->m[j] = NULL;
1399      }
1400    }
1401  }
1402
1403  idSkipZeroes(s_h3);
1404  idSkipZeroes(e);
1405
1406  if ((deg != NULL)
1407  && (!isMonomial)
1408  && (!TEST_OPT_NOTREGULARITY)
1409  && (setRegularity)
1410  && (h==isHomog)
1411  && (!rIsPluralRing(currRing))
1412  )
1413  {
1414    ring dp_C_ring = rCurrRingAssure_dp_C();
1415    if (dp_C_ring != syz_ring)
1416      e = idrMoveR_NoSort(e, syz_ring);
1417    resolvente res = sySchreyerResolvente(e,-1,&length,TRUE, TRUE);
1418    intvec * dummy = syBetti(res,length,&reg, *w);
1419    *deg = reg+2;
1420    delete dummy;
1421    for (j=0;j<length;j++)
1422    {
1423      if (res[j]!=NULL) idDelete(&(res[j]));
1424    }
1425    omFreeSize((ADDRESS)res,length*sizeof(ideal));
1426    idDelete(&e);
1427    if (dp_C_ring != syz_ring)
1428    {
1429      rChangeCurrRing(syz_ring);
1430      rKill(dp_C_ring);
1431    }
1432  }
1433  else
1434  {
1435    idDelete(&e);
1436  }
1437  idTest(s_h3);
1438  if (currQuotient != NULL)
1439  {
1440    ideal ts_h3=kStd(s_h3,currQuotient,h,w);
1441    idDelete(&s_h3);
1442    s_h3 = ts_h3;
1443  }
1444  return s_h3;
1445}
1446
1447/*2
1448*/
1449ideal idXXX (ideal  h1, int k)
1450{
1451  ideal s_h1;
1452  int j;
1453  intvec *w=NULL;
1454
1455  assume(currRing != NULL);
1456  ring orig_ring=currRing;
1457  ring syz_ring=rCurrRingAssure_SyzComp();
1458
1459  rSetSyzComp(k);
1460
1461  if (orig_ring != syz_ring)
1462  {
1463    s_h1=idrCopyR_NoSort(h1,orig_ring);
1464  }
1465  else
1466  {
1467    s_h1 = h1;
1468  }
1469
1470  ideal s_h3=kStd(s_h1,NULL,testHomog,&w,NULL,k);
1471
1472  if (s_h3==NULL)
1473  {
1474    return idFreeModule(IDELEMS(h1));
1475  }
1476
1477  if (orig_ring != syz_ring)
1478  {
1479    idDelete(&s_h1);
1480    idSkipZeroes(s_h3);
1481    rChangeCurrRing(orig_ring);
1482    s_h3 = idrMoveR_NoSort(s_h3, syz_ring);
1483    rKill(syz_ring);
1484    idTest(s_h3);
1485    return s_h3;
1486  }
1487
1488  idSkipZeroes(s_h3);
1489  idTest(s_h3);
1490  return s_h3;
1491}
1492
1493/*
1494*computes a standard basis for h1 and stores the transformation matrix
1495* in ma
1496*/
1497ideal idLiftStd (ideal  h1, matrix* ma, tHomog h)
1498{
1499  int   i, j, k, t, inputIsIdeal=idRankFreeModule(h1);
1500  poly  p=NULL, q, qq;
1501  intvec *w=NULL;
1502
1503  idDelete((ideal*)ma);
1504  *ma=mpNew(1,0);
1505  if (idIs0(h1))
1506    return idInit(1,h1->rank);
1507
1508  BITSET save_verbose=verbose;
1509
1510  k=si_max(1,(int)idRankFreeModule(h1));
1511
1512  if (k==1) verbose |=Sy_bit(V_IDLIFT);
1513
1514  ring orig_ring=currRing;
1515  ring syz_ring=rCurrRingAssure_SyzComp();
1516  rSetSyzComp(k);
1517
1518  ideal s_h1=h1;
1519
1520  if (orig_ring != syz_ring)
1521    s_h1 = idrCopyR_NoSort(h1,orig_ring);
1522  else
1523    s_h1 = h1;
1524
1525  ideal s_h3=idPrepare(s_h1,h,k,&w);
1526  ideal s_h2 = idInit(IDELEMS(s_h3), s_h3->rank);
1527
1528  if (w!=NULL) delete w;
1529  i = 0;
1530  for (j=0; j<IDELEMS(s_h3); j++)
1531  {
1532    if ((s_h3->m[j] != NULL) && (p_MinComp(s_h3->m[j],syz_ring) <= k))
1533    {
1534      i++;
1535      q = s_h3->m[j];
1536      while (pNext(q) != NULL)
1537      {
1538        if (pGetComp(pNext(q)) > k)
1539        {
1540          s_h2->m[j] = pNext(q);
1541          pNext(q) = NULL;
1542        }
1543        else
1544        {
1545          pIter(q);
1546        }
1547      }
1548      if (!inputIsIdeal) pShift(&(s_h3->m[j]), -1);
1549    }
1550    else
1551    {
1552      pDelete(&(s_h3->m[j]));
1553    }
1554  }
1555
1556  idSkipZeroes(s_h3);
1557  j = IDELEMS(s_h1);
1558
1559  if (syz_ring!=orig_ring)
1560  {
1561    idDelete(&s_h1);
1562    rChangeCurrRing(orig_ring);
1563  }
1564
1565  idDelete((ideal*)ma);
1566  *ma = mpNew(j,i);
1567
1568  i = 1;
1569  for (j=0; j<IDELEMS(s_h2); j++)
1570  {
1571    if (s_h2->m[j] != NULL)
1572    {
1573      q = prMoveR( s_h2->m[j], syz_ring);
1574      s_h2->m[j] = NULL;
1575
1576      while (q != NULL)
1577      {
1578        p = q;
1579        pIter(q);
1580        pNext(p) = NULL;
1581        t=pGetComp(p);
1582        pSetComp(p,0);
1583        pSetmComp(p);
1584        MATELEM(*ma,t-k,i) = pAdd(MATELEM(*ma,t-k,i),p);
1585      }
1586      i++;
1587    }
1588  }
1589  idDelete(&s_h2);
1590
1591  for (i=0; i<IDELEMS(s_h3); i++)
1592  {
1593    s_h3->m[i] = prMoveR_NoSort(s_h3->m[i], syz_ring);
1594  }
1595
1596  if (syz_ring!=orig_ring) rKill(syz_ring);
1597  verbose = save_verbose;
1598  return s_h3;
1599}
1600
1601static void idPrepareStd(ideal s_temp, int k)
1602{
1603  int j,rk=idRankFreeModule(s_temp);
1604  poly p,q;
1605
1606  if (rk == 0)
1607  {
1608    for (j=0; j<IDELEMS(s_temp); j++)
1609    {
1610      if (s_temp->m[j]!=NULL) pSetCompP(s_temp->m[j],1);
1611    }
1612    k = si_max(k,1);
1613  }
1614  for (j=0; j<IDELEMS(s_temp); j++)
1615  {
1616    if (s_temp->m[j]!=NULL)
1617    {
1618      p = s_temp->m[j];
1619      q = pOne();
1620      //pGetCoeff(q)=nNeg(pGetCoeff(q));   //set q to -1
1621      pSetComp(q,k+1+j);
1622      pSetmComp(q);
1623      while (pNext(p)) pIter(p);
1624      pNext(p) = q;
1625    }
1626  }
1627}
1628
1629/*2
1630*computes a representation of the generators of submod with respect to those
1631* of mod
1632*/
1633
1634ideal idLift(ideal mod, ideal submod,ideal *rest, BOOLEAN goodShape,
1635             BOOLEAN isSB, BOOLEAN divide, matrix *unit)
1636{
1637  int lsmod =idRankFreeModule(submod), i, j, k;
1638  int comps_to_add=0;
1639  poly p;
1640
1641  if (idIs0(submod))
1642  {
1643    if (unit!=NULL)
1644    {
1645      *unit=mpNew(1,1);
1646      MATELEM(*unit,1,1)=pOne();
1647    }
1648    if (rest!=NULL)
1649    {
1650      *rest=idInit(1,mod->rank);
1651    }
1652    return idInit(1,mod->rank);
1653  }
1654  if (idIs0(mod))
1655  {
1656    if (unit!=NULL)
1657    {
1658      i=IDELEMS(submod);
1659      *unit=mpNew(i,i);
1660      for (j=i;j>0;j--)
1661      {
1662        MATELEM(*unit,j,j)=pOne();
1663      }
1664    }
1665    if (rest!=NULL)
1666    {
1667      *rest=idCopy(submod);
1668    }
1669    return idInit(1,mod->rank);
1670  }
1671  if (unit!=NULL)
1672  {
1673    comps_to_add = IDELEMS(submod);
1674    while ((comps_to_add>0) && (submod->m[comps_to_add-1]==NULL))
1675      comps_to_add--;
1676  }
1677  k=idRankFreeModule(mod);
1678  if  ((k!=0) && (lsmod==0)) lsmod=1;
1679  k=si_max(k,1);
1680
1681  ring orig_ring=currRing;
1682  ring syz_ring=rCurrRingAssure_SyzComp();
1683  rSetSyzComp(k);
1684
1685  ideal s_mod, s_temp;
1686  if (orig_ring != syz_ring)
1687  {
1688    s_mod = idrCopyR_NoSort(mod,orig_ring);
1689    s_temp = idrCopyR_NoSort(submod,orig_ring);
1690  }
1691  else
1692  {
1693    s_mod = mod;
1694    s_temp = idCopy(submod);
1695  }
1696  ideal s_h3;
1697  if (isSB)
1698  {
1699    s_h3 = idCopy(s_mod);
1700    idPrepareStd(s_h3, k+comps_to_add);
1701  }
1702  else
1703  {
1704    s_h3 = idPrepare(s_mod,(tHomog)FALSE,k+comps_to_add,NULL);
1705  }
1706  if (!goodShape)
1707  {
1708    for (j=0;j<IDELEMS(s_h3);j++)
1709    {
1710      if ((s_h3->m[j] != NULL) && (pMinComp(s_h3->m[j]) > k))
1711        pDelete(&(s_h3->m[j]));
1712    }
1713  }
1714  idSkipZeroes(s_h3);
1715  if (lsmod==0)
1716  {
1717    for (j=IDELEMS(s_temp);j>0;j--)
1718    {
1719      if (s_temp->m[j-1]!=NULL)
1720        pShift(&(s_temp->m[j-1]),1);
1721    }
1722  }
1723  if (unit!=NULL)
1724  {
1725    for(j = 0;j<comps_to_add;j++)
1726    {
1727      p = s_temp->m[j];
1728      if (p!=NULL)
1729      {
1730        while (pNext(p)!=NULL) pIter(p);
1731        pNext(p) = pOne();
1732        pIter(p);
1733        pSetComp(p,1+j+k);
1734        pSetmComp(p);
1735        p = pNeg(p);
1736      }
1737    }
1738  }
1739  ideal s_result = kNF(s_h3,currQuotient,s_temp,k);
1740  s_result->rank = s_h3->rank;
1741  ideal s_rest = idInit(IDELEMS(s_result),k);
1742  idDelete(&s_h3);
1743  idDelete(&s_temp);
1744
1745  for (j=0;j<IDELEMS(s_result);j++)
1746  {
1747    if (s_result->m[j]!=NULL)
1748    {
1749      if (pGetComp(s_result->m[j])<=k)
1750      {
1751        if (!divide)
1752        {
1753          if (isSB)
1754          {
1755            WarnS("first module not a standardbasis\n"
1756              "// ** or second not a proper submodule");
1757          }
1758          else
1759            WerrorS("2nd module does not lies in the first");
1760          idDelete(&s_result);
1761          idDelete(&s_rest);
1762          s_result=idInit(IDELEMS(submod),submod->rank);
1763          break;
1764        }
1765        else
1766        {
1767          p = s_rest->m[j] = s_result->m[j];
1768          while ((pNext(p)!=NULL) && (pGetComp(pNext(p))<=k)) pIter(p);
1769          s_result->m[j] = pNext(p);
1770          pNext(p) = NULL;
1771        }
1772      }
1773      pShift(&(s_result->m[j]),-k);
1774      pNeg(s_result->m[j]);
1775    }
1776  }
1777  if ((lsmod==0) && (!idIs0(s_rest)))
1778  {
1779    for (j=IDELEMS(s_rest);j>0;j--)
1780    {
1781      if (s_rest->m[j-1]!=NULL)
1782      {
1783        pShift(&(s_rest->m[j-1]),-1);
1784        s_rest->m[j-1] = s_rest->m[j-1];
1785      }
1786    }
1787  }
1788  if(syz_ring!=orig_ring)
1789  {
1790    idDelete(&s_mod);
1791    rChangeCurrRing(orig_ring);
1792    s_result = idrMoveR_NoSort(s_result, syz_ring);
1793    s_rest = idrMoveR_NoSort(s_rest, syz_ring);
1794    rKill(syz_ring);
1795  }
1796  if (rest!=NULL)
1797    *rest = s_rest;
1798  else
1799    idDelete(&s_rest);
1800//idPrint(s_result);
1801  if (unit!=NULL)
1802  {
1803    *unit=mpNew(comps_to_add,comps_to_add);
1804    int i;
1805    for(i=0;i<IDELEMS(s_result);i++)
1806    {
1807      poly p=s_result->m[i];
1808      poly q=NULL;
1809      while(p!=NULL)
1810      {
1811        if(pGetComp(p)<=comps_to_add)
1812        {
1813          pSetComp(p,0);
1814          if (q!=NULL)
1815          {
1816            pNext(q)=pNext(p);
1817          }
1818          else
1819          {
1820            pIter(s_result->m[i]);
1821          }
1822          pNext(p)=NULL;
1823          MATELEM(*unit,i+1,i+1)=pAdd(MATELEM(*unit,i+1,i+1),p);
1824          if(q!=NULL)   p=pNext(q);
1825          else          p=s_result->m[i];
1826        }
1827        else
1828        {
1829          q=p;
1830          pIter(p);
1831        }
1832      }
1833      pShift(&s_result->m[i],-comps_to_add);
1834    }
1835  }
1836  return s_result;
1837}
1838
1839/*2
1840*computes division of P by Q with remainder up to (w-weighted) degree n
1841*P, Q, and w are not changed
1842*/
1843void idLiftW(ideal P,ideal Q,int n,matrix &T, ideal &R,short *w)
1844{
1845  long N=0;
1846  int i;
1847  for(i=IDELEMS(Q)-1;i>=0;i--)
1848    if(w==NULL)
1849      N=si_max(N,pDeg(Q->m[i]));
1850    else
1851      N=si_max(N,pDegW(Q->m[i],w));
1852  N+=n;
1853
1854  T=mpNew(IDELEMS(Q),IDELEMS(P));
1855  R=idInit(IDELEMS(P),P->rank);
1856
1857  for(i=IDELEMS(P)-1;i>=0;i--)
1858  {
1859    poly p;
1860    if(w==NULL)
1861      p=ppJet(P->m[i],N);
1862    else
1863      p=ppJetW(P->m[i],N,w);
1864
1865    int j=IDELEMS(Q)-1;
1866    while(p!=NULL)
1867    {
1868      if(pDivisibleBy(Q->m[j],p))
1869      {
1870        poly p0=pDivideM(pHead(p),pHead(Q->m[j]));
1871        if(w==NULL)
1872          p=pJet(pSub(p,ppMult_mm(Q->m[j],p0)),N);
1873        else
1874          p=pJetW(pSub(p,ppMult_mm(Q->m[j],p0)),N,w);
1875        pNormalize(p);
1876        if(w==NULL&&pDeg(p0)>n||w!=NULL&&pDegW(p0,w)>n)
1877          pDelete(&p0);
1878        else
1879          MATELEM(T,j+1,i+1)=pAdd(MATELEM(T,j+1,i+1),p0);
1880        j=IDELEMS(Q)-1;
1881      }
1882      else
1883      {
1884        if(j==0)
1885        {
1886          poly p0=p;
1887          pIter(p);
1888          pNext(p0)=NULL;
1889          if(w==NULL&&pDeg(p0)>n||w!=NULL&&pDegW(p0,w)>n)
1890            pDelete(&p0);
1891          else
1892            R->m[i]=pAdd(R->m[i],p0);
1893          j=IDELEMS(Q)-1;
1894        }
1895        else
1896          j--;
1897      }
1898    }
1899  }
1900}
1901
1902/*2
1903*computes the quotient of h1,h2 : internal routine for idQuot
1904*BEWARE: the returned ideals may contain incorrectly ordered polys !
1905*
1906*/
1907static ideal idInitializeQuot (ideal  h1, ideal h2, BOOLEAN h1IsStb,
1908                               BOOLEAN *addOnlyOne, int *kkmax)
1909{
1910  ideal temph1;
1911  poly     p,q = NULL;
1912  int i,l,ll,k,kkk,kmax;
1913  int j = 0;
1914  int k1 = idRankFreeModule(h1);
1915  int k2 = idRankFreeModule(h2);
1916  tHomog   hom=isNotHomog;
1917
1918  k=si_max(k1,k2);
1919  if (k==0)
1920    k = 1;
1921  if ((k2==0) && (k>1)) *addOnlyOne = FALSE;
1922
1923  intvec * weights;
1924  hom = (tHomog)idHomModule(h1,currQuotient,&weights);
1925  if (addOnlyOne && (!h1IsStb))
1926    temph1 = kStd(h1,currQuotient,hom,&weights,NULL);
1927  else
1928    temph1 = idCopy(h1);
1929  if (weights!=NULL) delete weights;
1930  idTest(temph1);
1931/*--- making a single vector from h2 ---------------------*/
1932  for (i=0; i<IDELEMS(h2); i++)
1933  {
1934    if (h2->m[i] != NULL)
1935    {
1936      p = pCopy(h2->m[i]);
1937      if (k2 == 0)
1938        pShift(&p,j*k+1);
1939      else
1940        pShift(&p,j*k);
1941      q = pAdd(q,p);
1942      j++;
1943    }
1944  }
1945  *kkmax = kmax = j*k+1;
1946/*--- adding a monomial for the result (syzygy) ----------*/
1947  p = q;
1948  while (pNext(p)!=NULL) pIter(p);
1949  pNext(p) = pOne();
1950  pIter(p);
1951  pSetComp(p,kmax);
1952  pSetmComp(p);
1953/*--- constructing the big matrix ------------------------*/
1954  ideal h4 = idInit(16,kmax+k-1);
1955  h4->m[0] = q;
1956  if (k2 == 0)
1957  {
1958    if (k > IDELEMS(h4))
1959    {
1960      pEnlargeSet(&(h4->m),IDELEMS(h4),k-IDELEMS(h4));
1961      IDELEMS(h4) = k;
1962    }
1963    for (i=1; i<k; i++)
1964    {
1965      p = pCopy_noCheck(h4->m[i-1]);
1966      pShift(&p,1);
1967      h4->m[i] = p;
1968    }
1969  }
1970
1971  kkk = IDELEMS(h4);
1972  i = IDELEMS(temph1);
1973  while ((i>0) && (temph1->m[i-1]==NULL)) i--;
1974  for (l=0; l<i; l++)
1975  {
1976    if(temph1->m[l]!=NULL)
1977    {
1978      for (ll=0; ll<j; ll++)
1979      {
1980        p = pCopy(temph1->m[l]);
1981        if (k1 == 0)
1982          pShift(&p,ll*k+1);
1983        else
1984          pShift(&p,ll*k);
1985        if (kkk >= IDELEMS(h4))
1986        {
1987          pEnlargeSet(&(h4->m),IDELEMS(h4),16);
1988          IDELEMS(h4) += 16;
1989        }
1990        h4->m[kkk] = p;
1991        kkk++;
1992      }
1993    }
1994  }
1995/*--- if h2 goes in as single vector - the h1-part is just SB ---*/
1996  if (*addOnlyOne)
1997  {
1998    p = h4->m[0];
1999    for (i=0;i<IDELEMS(h4)-1;i++)
2000    {
2001      h4->m[i] = h4->m[i+1];
2002    }
2003    h4->m[IDELEMS(h4)-1] = p;
2004    idSkipZeroes(h4);
2005    test |= Sy_bit(OPT_SB_1);
2006  }
2007  idDelete(&temph1);
2008  return h4;
2009}
2010/*2
2011*computes the quotient of h1,h2
2012*/
2013ideal idQuot (ideal  h1, ideal h2, BOOLEAN h1IsStb, BOOLEAN resultIsIdeal)
2014{
2015  // first check for special case h1:(0)
2016  if (idIs0(h2))
2017  {
2018    ideal res;
2019    if (resultIsIdeal)
2020    {
2021      res = idInit(1,1);
2022      res->m[0] = pOne();
2023    }
2024    else
2025      res = idFreeModule(h1->rank);
2026    return res;
2027  }
2028  BITSET old_test=test;
2029  poly     p,q = NULL;
2030  int i,l,ll,k,kkk,kmax;
2031  BOOLEAN  addOnlyOne=TRUE;
2032  tHomog   hom=isNotHomog;
2033  intvec * weights1;
2034
2035  ideal s_h4 = idInitializeQuot (h1,h2,h1IsStb,&addOnlyOne,&kmax);
2036
2037  hom = (tHomog)idHomModule(s_h4,currQuotient,&weights1);
2038
2039  ring orig_ring=currRing;
2040  ring syz_ring=rCurrRingAssure_SyzComp();
2041  rSetSyzComp(kmax-1);
2042  if (orig_ring!=syz_ring)
2043  //  s_h4 = idrMoveR_NoSort(s_h4,orig_ring);
2044    s_h4 = idrMoveR(s_h4,orig_ring);
2045  idTest(s_h4);
2046  ideal s_h3;
2047  if (addOnlyOne)
2048  {
2049    s_h3 = kStd(s_h4,currQuotient,hom,&weights1,NULL,kmax-1,IDELEMS(s_h4)-1);
2050  }
2051  else
2052  {
2053    s_h3 = kStd(s_h4,currQuotient,hom,&weights1,NULL,kmax-1);
2054  }
2055  idTest(s_h3);
2056  if (weights1!=NULL) delete weights1;
2057  idDelete(&s_h4);
2058
2059
2060  for (i=0;i<IDELEMS(s_h3);i++)
2061  {
2062    if ((s_h3->m[i]!=NULL) && (pGetComp(s_h3->m[i])>=kmax))
2063    {
2064      if (resultIsIdeal)
2065        pShift(&s_h3->m[i],-kmax);
2066      else
2067        pShift(&s_h3->m[i],-kmax+1);
2068    }
2069    else
2070      pDelete(&s_h3->m[i]);
2071  }
2072  if (resultIsIdeal)
2073    s_h3->rank = 1;
2074  else
2075    s_h3->rank = h1->rank;
2076  if(syz_ring!=orig_ring)
2077  {
2078//    pDelete(&q);
2079    rChangeCurrRing(orig_ring);
2080    s_h3 = idrMoveR_NoSort(s_h3, syz_ring);
2081    rKill(syz_ring);
2082  }
2083  idSkipZeroes(s_h3);
2084  test = old_test;
2085  idTest(s_h3);
2086  return s_h3;
2087}
2088
2089/*2
2090*computes recursively all monomials of a certain degree
2091*in every step the actvar-th entry in the exponential
2092*vector is incremented and the other variables are
2093*computed by recursive calls of makemonoms
2094*if the last variable is reached, the difference to the
2095*degree is computed directly
2096*vars is the number variables
2097*actvar is the actual variable to handle
2098*deg is the degree of the monomials to compute
2099*monomdeg is the actual degree of the monomial in consideration
2100*/
2101static void makemonoms(int vars,int actvar,int deg,int monomdeg)
2102{
2103  poly p;
2104  int i=0;
2105
2106  if ((idpowerpoint == 0) && (actvar ==1))
2107  {
2108    idpower[idpowerpoint] = pOne();
2109    monomdeg = 0;
2110  }
2111  while (i<=deg)
2112  {
2113    if (deg == monomdeg)
2114    {
2115      pSetm(idpower[idpowerpoint]);
2116      idpowerpoint++;
2117      return;
2118    }
2119    if (actvar == vars)
2120    {
2121      pSetExp(idpower[idpowerpoint],actvar,deg-monomdeg);
2122      pSetm(idpower[idpowerpoint]);
2123      pTest(idpower[idpowerpoint]);
2124      idpowerpoint++;
2125      return;
2126    }
2127    else
2128    {
2129      p = pCopy(idpower[idpowerpoint]);
2130      makemonoms(vars,actvar+1,deg,monomdeg);
2131      idpower[idpowerpoint] = p;
2132    }
2133    monomdeg++;
2134    pSetExp(idpower[idpowerpoint],actvar,pGetExp(idpower[idpowerpoint],actvar)+1);
2135    pSetm(idpower[idpowerpoint]);
2136    pTest(idpower[idpowerpoint]);
2137    i++;
2138  }
2139}
2140
2141/*2
2142*returns the deg-th power of the maximal ideal of 0
2143*/
2144ideal idMaxIdeal(int deg)
2145{
2146  if (deg < 0)
2147  {
2148    WarnS("maxideal: power must be non-negative");
2149  }
2150  if (deg < 1)
2151  {
2152    ideal I=idInit(1,1);
2153    I->m[0]=pOne();
2154    return I;
2155  }
2156  if (deg == 1)
2157  {
2158    return idMaxIdeal();
2159  }
2160
2161  int vars = currRing->N;
2162  int i = binom(vars+deg-1,deg);
2163  if (i<=0) return idInit(1,1);
2164  ideal id=idInit(i,1);
2165  idpower = id->m;
2166  idpowerpoint = 0;
2167  makemonoms(vars,1,deg,0);
2168  idpower = NULL;
2169  idpowerpoint = 0;
2170  return id;
2171}
2172
2173/*2
2174*computes recursively all generators of a certain degree
2175*of the ideal "givenideal"
2176*elms is the number elements in the given ideal
2177*actelm is the actual element to handle
2178*deg is the degree of the power to compute
2179*gendeg is the actual degree of the generator in consideration
2180*/
2181static void makepotence(int elms,int actelm,int deg,int gendeg)
2182{
2183  poly p;
2184  int i=0;
2185
2186  if ((idpowerpoint == 0) && (actelm ==1))
2187  {
2188    idpower[idpowerpoint] = pOne();
2189    gendeg = 0;
2190  }
2191  while (i<=deg)
2192  {
2193    if (deg == gendeg)
2194    {
2195      idpowerpoint++;
2196      return;
2197    }
2198    if (actelm == elms)
2199    {
2200      p=pPower(pCopy(givenideal[actelm-1]),deg-gendeg);
2201      idpower[idpowerpoint]=pMult(idpower[idpowerpoint],p);
2202      idpowerpoint++;
2203      return;
2204    }
2205    else
2206    {
2207      p = pCopy(idpower[idpowerpoint]);
2208      makepotence(elms,actelm+1,deg,gendeg);
2209      idpower[idpowerpoint] = p;
2210    }
2211    gendeg++;
2212    idpower[idpowerpoint]=pMult(idpower[idpowerpoint],pCopy(givenideal[actelm-1]));
2213    i++;
2214  }
2215}
2216
2217/*2
2218*returns the deg-th power of the ideal gid
2219*/
2220//ideal idPower(ideal gid,int deg)
2221//{
2222//  int i;
2223//  ideal id;
2224//
2225//  if (deg < 1) deg = 1;
2226//  i = binom(IDELEMS(gid)+deg-1,deg);
2227//  id=idInit(i,1);
2228//  idpower = id->m;
2229//  givenideal = gid->m;
2230//  idpowerpoint = 0;
2231//  makepotence(IDELEMS(gid),1,deg,0);
2232//  idpower = NULL;
2233//  givenideal = NULL;
2234//  idpowerpoint = 0;
2235//  return id;
2236//}
2237static void idNextPotence(ideal given, ideal result,
2238  int begin, int end, int deg, int restdeg, poly ap)
2239{
2240  poly p;
2241  int i;
2242
2243  p = pPower(pCopy(given->m[begin]),restdeg);
2244  i = result->nrows;
2245  result->m[i] = pMult(pCopy(ap),p);
2246//PrintS(".");
2247  (result->nrows)++;
2248  if (result->nrows >= IDELEMS(result))
2249  {
2250    pEnlargeSet(&(result->m),IDELEMS(result),16);
2251    IDELEMS(result) += 16;
2252  }
2253  if (begin == end) return;
2254  for (i=restdeg-1;i>0;i--)
2255  {
2256    p = pPower(pCopy(given->m[begin]),i);
2257    p = pMult(pCopy(ap),p);
2258    idNextPotence(given, result, begin+1, end, deg, restdeg-i, p);
2259    pDelete(&p);
2260  }
2261  idNextPotence(given, result, begin+1, end, deg, restdeg, ap);
2262}
2263
2264ideal idPower(ideal given,int exp)
2265{
2266  ideal result,temp;
2267  poly p1;
2268  int i;
2269
2270  if (idIs0(given)) return idInit(1,1);
2271  temp = idCopy(given);
2272  idSkipZeroes(temp);
2273  i = binom(IDELEMS(temp)+exp-1,exp);
2274  result = idInit(i,1);
2275  result->nrows = 0;
2276//Print("ideal contains %d elements\n",i);
2277  p1=pOne();
2278  idNextPotence(temp,result,0,IDELEMS(temp)-1,exp,exp,p1);
2279  pDelete(&p1);
2280  idDelete(&temp);
2281  result->nrows = 1;
2282  idDelEquals(result);
2283  idSkipZeroes(result);
2284  return result;
2285}
2286
2287/*2
2288* eliminate delVar (product of vars) in h1
2289*/
2290ideal idElimination (ideal h1,poly delVar,intvec *hilb)
2291{
2292  int    i,j=0,k,l;
2293  ideal  h,hh, h3;
2294  int    *ord,*block0,*block1;
2295  int    ordersize=2;
2296  int    **wv;
2297  tHomog hom;
2298  intvec * w;
2299  sip_sring tmpR;
2300  ring origR = currRing;
2301
2302  if (delVar==NULL)
2303  {
2304    return idCopy(h1);
2305  }
2306  if (currQuotient!=NULL)
2307  {
2308    WerrorS("cannot eliminate in a qring");
2309    return idCopy(h1);
2310  }
2311  if (idIs0(h1)) return idInit(1,h1->rank);
2312#ifdef HAVE_PLURAL
2313  if (rIsPluralRing(currRing))
2314    /* in the NC case, we have to check the admissibility of */
2315    /* the subalgebra to be intersected with */
2316  {
2317    if (currRing->nc->type!=nc_skew) /* in (quasi)-commutative algebras every subalgebra is admissible */
2318    {
2319      if (nc_CheckSubalgebra(delVar,currRing))
2320      {
2321        WerrorS("no elimination is possible: subalgebra is not admissible");
2322        return idCopy(h1);
2323      }
2324    }
2325  }
2326#endif
2327  hom=(tHomog)idHomModule(h1,NULL,&w); //sets w to weight vector or NULL
2328  h3=idInit(16,h1->rank);
2329  for (k=0;; k++)
2330  {
2331    if (currRing->order[k]!=0) ordersize++;
2332    else break;
2333  }
2334  ord=(int*)omAlloc0(ordersize*sizeof(int));
2335  block0=(int*)omAlloc(ordersize*sizeof(int));
2336  block1=(int*)omAlloc(ordersize*sizeof(int));
2337  for (k=0;; k++)
2338  {
2339    if (currRing->order[k]!=0)
2340    {
2341      block0[k+1] = currRing->block0[k];
2342      block1[k+1] = currRing->block1[k];
2343      ord[k+1] = currRing->order[k];
2344    }
2345    else
2346      break;
2347  }
2348  block0[0] = 1;
2349  block1[0] = pVariables;
2350  wv=(int**) omAlloc0(ordersize*sizeof(int**));
2351  memcpy4(wv+1,currRing->wvhdl,(ordersize-1)*sizeof(int**));
2352  wv[0]=(int*)omAlloc((pVariables+1)*sizeof(int));
2353  memset(wv[0],0,(pVariables+1)*sizeof(int));
2354  for (j=0;j<pVariables;j++)
2355    if (pGetExp(delVar,j+1)!=0) wv[0][j]=1;
2356  // use this special ordering: like ringorder_a, except that pFDeg, pWeights
2357  // ignore it
2358  ord[0] = ringorder_aa;
2359
2360  // fill in tmp ring to get back the data later on
2361  tmpR  = *origR;
2362  tmpR.order = ord;
2363  tmpR.block0 = block0;
2364  tmpR.block1 = block1;
2365  tmpR.wvhdl = wv;
2366  rComplete(&tmpR, 1);
2367
2368#ifdef HAVE_PLURAL
2369  /* update nc structure on tmpR */
2370  if (rIsPluralRing(currRing))
2371  {
2372    BOOLEAN BAD = FALSE;
2373    if ( nc_rComplete(origR, &tmpR) )
2374    {
2375      Werror("error in nc_rComplete");
2376      BAD = TRUE;
2377    }
2378    if (!BAD)
2379    {
2380      /* tests the admissibility of the new elim. ordering */
2381      if ( nc_CheckOrdCondition( (&tmpR)->nc->D, &tmpR) )
2382      {
2383        Werror("no elimination is possible: ordering condition is violated");
2384        BAD = TRUE;
2385      }
2386    }
2387    if (BAD)
2388    {
2389      // cleanup
2390      omFree((ADDRESS)wv[0]);
2391      omFreeSize((ADDRESS)wv,ordersize*sizeof(int**));
2392      omFreeSize((ADDRESS)ord,ordersize*sizeof(int));
2393      omFreeSize((ADDRESS)block0,ordersize*sizeof(int));
2394      omFreeSize((ADDRESS)block1,ordersize*sizeof(int));
2395      rUnComplete(&tmpR);
2396      if (w!=NULL)
2397      {
2398        delete w;
2399      }
2400      return idCopy(h1);
2401    }
2402  }
2403#endif
2404  // change into the new ring
2405  //pChangeRing(pVariables,currRing->OrdSgn,ord,block0,block1,wv);
2406  rChangeCurrRing(&tmpR);
2407
2408  h = idInit(IDELEMS(h1),h1->rank);
2409  // fetch data from the old ring
2410  for (k=0;k<IDELEMS(h1);k++) h->m[k] = prCopyR( h1->m[k], origR);
2411  // compute kStd
2412  hh = kStd(h,NULL,hom,&w,hilb);
2413  idDelete(&h);
2414
2415  // go back to the original ring
2416  rChangeCurrRing(origR);
2417  i = IDELEMS(hh)-1;
2418  while ((i >= 0) && (hh->m[i] == NULL)) i--;
2419  j = -1;
2420  // fetch data from temp ring
2421  for (k=0; k<=i; k++)
2422  {
2423    l=pVariables;
2424    while ((l>0) && (p_GetExp( hh->m[k],l,&tmpR)*pGetExp(delVar,l)==0)) l--;
2425    if (l==0)
2426    {
2427      j++;
2428      if (j >= IDELEMS(h3))
2429      {
2430        pEnlargeSet(&(h3->m),IDELEMS(h3),16);
2431        IDELEMS(h3) += 16;
2432      }
2433      h3->m[j] = prCopyR( hh->m[k], &tmpR);
2434    }
2435  }
2436  id_Delete(&hh, &tmpR);
2437  idSkipZeroes(h3);
2438  omFree((ADDRESS)wv[0]);
2439  omFreeSize((ADDRESS)wv,ordersize*sizeof(int**));
2440  omFreeSize((ADDRESS)ord,ordersize*sizeof(int));
2441  omFreeSize((ADDRESS)block0,ordersize*sizeof(int));
2442  omFreeSize((ADDRESS)block1,ordersize*sizeof(int));
2443  rUnComplete(&tmpR);
2444  if (w!=NULL)
2445    delete w;
2446  return h3;
2447}
2448
2449#ifdef WITH_OLD_MINOR
2450/*2
2451* compute all ar-minors of the matrix a
2452*/
2453ideal idMinors(matrix a, int ar, ideal R)
2454{
2455  int     i,j,k,size;
2456  int *rowchoise,*colchoise;
2457  BOOLEAN rowch,colch;
2458  ideal result;
2459  matrix tmp;
2460  poly p,q;
2461
2462  i = binom(a->rows(),ar);
2463  j = binom(a->cols(),ar);
2464
2465  rowchoise=(int *)omAlloc(ar*sizeof(int));
2466  colchoise=(int *)omAlloc(ar*sizeof(int));
2467  if ((i>512) || (j>512) || (i*j >512)) size=512;
2468  else size=i*j;
2469  result=idInit(size,1);
2470  tmp=mpNew(ar,ar);
2471  k = 0; /* the index in result*/
2472  idInitChoise(ar,1,a->rows(),&rowch,rowchoise);
2473  while (!rowch)
2474  {
2475    idInitChoise(ar,1,a->cols(),&colch,colchoise);
2476    while (!colch)
2477    {
2478      for (i=1; i<=ar; i++)
2479      {
2480        for (j=1; j<=ar; j++)
2481        {
2482          MATELEM(tmp,i,j) = MATELEM(a,rowchoise[i-1],colchoise[j-1]);
2483        }
2484      }
2485      p = mpDetBareiss(tmp);
2486      if (p!=NULL)
2487      {
2488        if (R!=NULL)
2489        {
2490          q = p;
2491          p = kNF(R,currQuotient,q);
2492          pDelete(&q);
2493        }
2494        if (p!=NULL)
2495        {
2496          if (k>=size)
2497          {
2498            pEnlargeSet(&result->m,size,32);
2499            size += 32;
2500          }
2501          result->m[k] = p;
2502          k++;
2503        }
2504      }
2505      idGetNextChoise(ar,a->cols(),&colch,colchoise);
2506    }
2507    idGetNextChoise(ar,a->rows(),&rowch,rowchoise);
2508  }
2509  /*delete the matrix tmp*/
2510  for (i=1; i<=ar; i++)
2511  {
2512    for (j=1; j<=ar; j++) MATELEM(tmp,i,j) = NULL;
2513  }
2514  idDelete((ideal*)&tmp);
2515  if (k==0)
2516  {
2517    k=1;
2518    result->m[0]=NULL;
2519  }
2520  omFreeSize((ADDRESS)rowchoise,ar*sizeof(int));
2521  omFreeSize((ADDRESS)colchoise,ar*sizeof(int));
2522  pEnlargeSet(&result->m,size,k-size);
2523  IDELEMS(result) = k;
2524  return (result);
2525}
2526#else
2527/*2
2528* compute all ar-minors of the matrix a
2529* the caller of mpRecMin
2530* the elements of the result are not in R (if R!=NULL)
2531*/
2532ideal idMinors(matrix a, int ar, ideal R)
2533{
2534  int elems=0;
2535  int r=a->nrows,c=a->ncols;
2536  int i;
2537  matrix b;
2538  ideal result,h;
2539  ring origR;
2540  sip_sring tmpR;
2541  Exponent_t bound;
2542
2543  if((ar<=0) || (ar>r) || (ar>c))
2544  {
2545    Werror("%d-th minor, matrix is %dx%d",ar,r,c);
2546    return NULL;
2547  }
2548  h = idMatrix2Module(mpCopy(a));
2549  bound = smExpBound(h,c,r,ar);
2550  idDelete(&h);
2551  smRingChange(&origR,tmpR,bound);
2552  b = mpNew(r,c);
2553  for (i=r*c-1;i>=0;i--)
2554  {
2555    if (a->m[i])
2556      b->m[i] = prCopyR(a->m[i],origR);
2557  }
2558  if (R) R = idrCopyR(R,origR);
2559  result=idInit(32,1);
2560  if(ar>1) mpRecMin(ar-1,result,elems,b,r,c,NULL,R);
2561  else mpMinorToResult(result,elems,b,r,c,R);
2562  idDelete((ideal *)&b);
2563  if (R) idDelete(&R);
2564  idSkipZeroes(result);
2565  rChangeCurrRing(origR);
2566  result = idrMoveR(result,&tmpR);
2567  smRingClean(origR,tmpR);
2568  idTest(result);
2569  return result;
2570}
2571#endif
2572
2573/*2
2574*skips all zeroes and double elements, searches also for units
2575*/
2576void idCompactify(ideal id)
2577{
2578  int i,j;
2579  BOOLEAN b=FALSE;
2580
2581  i = IDELEMS(id)-1;
2582  while ((! b) && (i>=0))
2583  {
2584    b=pIsUnit(id->m[i]);
2585    i--;
2586  }
2587  if (b)
2588  {
2589    for(i=IDELEMS(id)-1;i>=0;i--) pDelete(&id->m[i]);
2590    id->m[0]=pOne();
2591  }
2592  else
2593  {
2594    idDelMultiples(id);
2595  }
2596  idSkipZeroes(id);
2597}
2598
2599/*2
2600*returns TRUE if id1 is a submodule of id2
2601*/
2602BOOLEAN idIsSubModule(ideal id1,ideal id2)
2603{
2604  int i;
2605  poly p;
2606
2607  if (idIs0(id1)) return TRUE;
2608  for (i=0;i<IDELEMS(id1);i++)
2609  {
2610    if (id1->m[i] != NULL)
2611    {
2612      p = kNF(id2,currQuotient,id1->m[i]);
2613      if (p != NULL)
2614      {
2615        pDelete(&p);
2616        return FALSE;
2617      }
2618    }
2619  }
2620  return TRUE;
2621}
2622
2623/*2
2624* returns the ideals of initial terms
2625*/
2626ideal idHead(ideal h)
2627{
2628  ideal m = idInit(IDELEMS(h),h->rank);
2629  int i;
2630
2631  for (i=IDELEMS(h)-1;i>=0; i--)
2632  {
2633    if (h->m[i]!=NULL) m->m[i]=pHead(h->m[i]);
2634  }
2635  return m;
2636}
2637
2638ideal idHomogen(ideal h, int varnum)
2639{
2640  ideal m = idInit(IDELEMS(h),h->rank);
2641  int i;
2642
2643  for (i=IDELEMS(h)-1;i>=0; i--)
2644  {
2645    m->m[i]=pHomogen(h->m[i],varnum);
2646  }
2647  return m;
2648}
2649
2650/*------------------type conversions----------------*/
2651ideal idVec2Ideal(poly vec)
2652{
2653   ideal result=idInit(1,1);
2654   omFree((ADDRESS)result->m);
2655   result->m=NULL; // remove later
2656   pVec2Polys(vec, &(result->m), &(IDELEMS(result)));
2657   return result;
2658}
2659
2660#define NEW_STUFF
2661#ifndef NEW_STUFF
2662// converts mat to module, destroys mat
2663ideal idMatrix2Module(matrix mat)
2664{
2665  int mc=MATCOLS(mat);
2666  int mr=MATROWS(mat);
2667  ideal result = idInit(si_max(mc,1),si_max(mr,1));
2668  int i,j;
2669  poly h;
2670
2671  for(j=0;j<mc /*MATCOLS(mat)*/;j++) /* j is also index in result->m */
2672  {
2673    for (i=1;i<=mr /*MATROWS(mat)*/;i++)
2674    {
2675      h = MATELEM(mat,i,j+1);
2676      if (h!=NULL)
2677      {
2678        MATELEM(mat,i,j+1)=NULL;
2679        pSetCompP(h,i);
2680        result->m[j] = pAdd(result->m[j],h);
2681      }
2682    }
2683  }
2684  // obachman: need to clean this up
2685  idDelete((ideal*) &mat);
2686  return result;
2687}
2688#else
2689
2690#include "sbuckets.h"
2691
2692// converts mat to module, destroys mat
2693ideal idMatrix2Module(matrix mat)
2694{
2695  int mc=MATCOLS(mat);
2696  int mr=MATROWS(mat);
2697  ideal result = idInit(si_max(mc,1),si_max(mr,1));
2698  int i,j, l;
2699  poly h;
2700  poly p;
2701  sBucket_pt bucket = sBucketCreate(currRing);
2702
2703  for(j=0;j<mc /*MATCOLS(mat)*/;j++) /* j is also index in result->m */
2704  {
2705    for (i=1;i<=mr /*MATROWS(mat)*/;i++)
2706    {
2707      h = MATELEM(mat,i,j+1);
2708      if (h!=NULL)
2709      {
2710        l=pLength(h);
2711        MATELEM(mat,i,j+1)=NULL;
2712        p_SetCompP(h,i, currRing);
2713        sBucket_Merge_p(bucket, h, l);
2714      }
2715    }
2716    sBucketClearMerge(bucket, &(result->m[j]), &l);
2717  }
2718  sBucketDestroy(&bucket);
2719
2720  // obachman: need to clean this up
2721  idDelete((ideal*) &mat);
2722  return result;
2723}
2724#endif
2725
2726/*2
2727* converts a module into a matrix, destroyes the input
2728*/
2729matrix idModule2Matrix(ideal mod)
2730{
2731  matrix result = mpNew(mod->rank,IDELEMS(mod));
2732  int i,cp;
2733  poly p,h;
2734
2735  for(i=0;i<IDELEMS(mod);i++)
2736  {
2737    p=mod->m[i];
2738    mod->m[i]=NULL;
2739    while (p!=NULL)
2740    {
2741      h=p;
2742      pIter(p);
2743      pNext(h)=NULL;
2744//      cp = si_max(1,pGetComp(h));     // if used for ideals too
2745      cp = pGetComp(h);
2746      pSetComp(h,0);
2747      pSetmComp(h);
2748#ifdef TEST
2749      if (cp>mod->rank)
2750      {
2751        Print("## inv. rank %d -> %d\n",mod->rank,cp);
2752        int k,l,o=mod->rank;
2753        mod->rank=cp;
2754        matrix d=mpNew(mod->rank,IDELEMS(mod));
2755        for (l=1; l<=o; l++)
2756        {
2757          for (k=1; k<=IDELEMS(mod); k++)
2758          {
2759            MATELEM(d,l,k)=MATELEM(result,l,k);
2760            MATELEM(result,l,k)=NULL;
2761          }
2762        }
2763        idDelete((ideal *)&result);
2764        result=d;
2765      }
2766#endif
2767      MATELEM(result,cp,i+1) = pAdd(MATELEM(result,cp,i+1),h);
2768    }
2769  }
2770  // obachman 10/99: added the following line, otherwise memory leack!
2771  idDelete(&mod);
2772  return result;
2773}
2774
2775matrix idModule2formatedMatrix(ideal mod,int rows, int cols)
2776{
2777  matrix result = mpNew(rows,cols);
2778  int i,cp,r=idRankFreeModule(mod),c=IDELEMS(mod);
2779  poly p,h;
2780
2781  if (r>rows) r = rows;
2782  if (c>cols) c = cols;
2783  for(i=0;i<c;i++)
2784  {
2785    p=mod->m[i];
2786    mod->m[i]=NULL;
2787    while (p!=NULL)
2788    {
2789      h=p;
2790      pIter(p);
2791      pNext(h)=NULL;
2792      cp = pGetComp(h);
2793      if (cp<=r)
2794      {
2795        pSetComp(h,0);
2796        pSetmComp(h);
2797        MATELEM(result,cp,i+1) = pAdd(MATELEM(result,cp,i+1),h);
2798      }
2799      else
2800        pDelete(&h);
2801    }
2802  }
2803  idDelete(&mod);
2804  return result;
2805}
2806
2807/*2
2808* substitute the n-th variable by the monomial e in id
2809* destroy id
2810*/
2811ideal  idSubst(ideal id, int n, poly e)
2812{
2813  int k=MATROWS((matrix)id)*MATCOLS((matrix)id);
2814  ideal res=(ideal)mpNew(MATROWS((matrix)id),MATCOLS((matrix)id));
2815
2816  res->rank = id->rank;
2817  for(k--;k>=0;k--)
2818  {
2819    res->m[k]=pSubst(id->m[k],n,e);
2820    id->m[k]=NULL;
2821  }
2822  idDelete(&id);
2823  return res;
2824}
2825
2826BOOLEAN idHomModule(ideal m, ideal Q, intvec **w)
2827{
2828  if (w!=NULL) *w=NULL;
2829  if ((Q!=NULL) && (!idHomIdeal(Q,NULL))) return FALSE;
2830  if (idIs0(m))
2831  {
2832    if (w!=NULL) (*w)=new intvec(m->rank);
2833    return TRUE;
2834  }
2835
2836  int i,j,cmax=2,order=0,ord,* diff,* iscom,diffmin=32000;
2837  poly p=NULL;
2838  int length=IDELEMS(m);
2839  polyset P=m->m;
2840  polyset F=(polyset)omAlloc(length*sizeof(poly));
2841  for (i=length-1;i>=0;i--)
2842  {
2843    p=F[i]=P[i];
2844    cmax=si_max(cmax,(int)pMaxComp(p)+1);
2845  }
2846  diff = (int *)omAlloc0(cmax*sizeof(int));
2847  if (w!=NULL) *w=new intvec(cmax-1);
2848  iscom = (int *)omAlloc0(cmax*sizeof(int));
2849  i=0;
2850  while (i<=length)
2851  {
2852    if (i<length)
2853    {
2854      p=F[i];
2855      while ((p!=NULL) && (!iscom[pGetComp(p)])) pIter(p);
2856    }
2857    if ((p==NULL) && (i<length))
2858    {
2859      i++;
2860    }
2861    else
2862    {
2863      if (p==NULL)
2864      {
2865        i=0;
2866        while ((i<length) && (F[i]==NULL)) i++;
2867        if (i>=length) break;
2868        p = F[i];
2869      }
2870      if (pLexOrder && (currRing->order[0]==ringorder_lp))
2871        order=pTotaldegree(p);
2872      else
2873      //  order = p->order;
2874        order = pFDeg(p,currRing);
2875      order += diff[pGetComp(p)];
2876      p = F[i];
2877//Print("Actual p=F[%d]: ",i);pWrite(p);
2878      F[i] = NULL;
2879      i=0;
2880    }
2881    while (p!=NULL)
2882    {
2883      //if (pLexOrder)
2884      //  ord=pTotaldegree(p);
2885      //else
2886      //  ord = p->order;
2887      ord = pFDeg(p,currRing);
2888      if (!iscom[pGetComp(p)])
2889      {
2890        diff[pGetComp(p)] = order-ord;
2891        iscom[pGetComp(p)] = 1;
2892/*
2893*PrintS("new diff: ");
2894*for (j=0;j<cmax;j++) Print("%d ",diff[j]);
2895*PrintLn();
2896*PrintS("new iscom: ");
2897*for (j=0;j<cmax;j++) Print("%d ",iscom[j]);
2898*PrintLn();
2899*Print("new set %d, order %d, ord %d, diff %d\n",pGetComp(p),order,ord,diff[pGetComp(p)]);
2900*/
2901      }
2902      else
2903      {
2904/*
2905*PrintS("new diff: ");
2906*for (j=0;j<cmax;j++) Print("%d ",diff[j]);
2907*PrintLn();
2908*Print("order %d, ord %d, diff %d\n",order,ord,diff[pGetComp(p)]);
2909*/
2910        if (order != ord+diff[pGetComp(p)])
2911        {
2912          omFreeSize((ADDRESS) iscom,cmax*sizeof(int));
2913          omFreeSize((ADDRESS) diff,cmax*sizeof(int));
2914          omFreeSize((ADDRESS) F,length*sizeof(poly));
2915          delete *w;*w=NULL;
2916          return FALSE;
2917        }
2918      }
2919      pIter(p);
2920    }
2921  }
2922  omFreeSize((ADDRESS) iscom,cmax*sizeof(int));
2923  omFreeSize((ADDRESS) F,length*sizeof(poly));
2924  for (i=1;i<cmax;i++) (**w)[i-1]=diff[i];
2925  for (i=1;i<cmax;i++)
2926  {
2927    if (diff[i]<diffmin) diffmin=diff[i];
2928  }
2929  if (w!=NULL)
2930  {
2931    for (i=1;i<cmax;i++)
2932    {
2933      (**w)[i-1]=diff[i]-diffmin;
2934    }
2935  }
2936  omFreeSize((ADDRESS) diff,cmax*sizeof(int));
2937  return TRUE;
2938}
2939
2940BOOLEAN idTestHomModule(ideal m, ideal Q, intvec *w)
2941{
2942  if ((Q!=NULL) && (!idHomIdeal(Q,NULL)))  { PrintS(" Q not hom\n"); return FALSE;}
2943  if (idIs0(m)) return TRUE;
2944
2945  int cmax=-1;
2946  int i;
2947  poly p=NULL;
2948  int length=IDELEMS(m);
2949  polyset P=m->m;
2950  for (i=length-1;i>=0;i--)
2951  {
2952    p=P[i];
2953    if (p!=NULL) cmax=si_max(cmax,(int)pMaxComp(p)+1);
2954  }
2955  if (w->length()+1 < cmax)
2956  {
2957    // Print("length: %d - %d \n", w->length(),cmax);
2958    return FALSE;
2959  }
2960  pSetModDeg(w);
2961  for (i=length-1;i>=0;i--)
2962  {
2963    p=P[i];
2964    poly q=p;
2965    if (p!=NULL)
2966    {
2967      int d=pFDeg(p,currRing);
2968      loop
2969      {
2970        pIter(p);
2971        if (p==NULL) break;
2972        if (d!=pFDeg(p,currRing))
2973        {
2974          //pWrite(q); wrp(p); Print(" -> %d - %d\n",d,pFDeg(p,currRing));
2975          return FALSE;
2976        }
2977      }
2978    }
2979  }
2980  pSetModDeg(NULL);
2981  return TRUE;
2982}
2983
2984ideal idJet(ideal i,int d)
2985{
2986  ideal r=idInit((i->nrows)*(i->ncols),i->rank);
2987  r->nrows = i-> nrows;
2988  r->ncols = i-> ncols;
2989  //r->rank = i-> rank;
2990  int k;
2991  for(k=(i->nrows)*(i->ncols)-1;k>=0; k--)
2992  {
2993    r->m[k]=ppJet(i->m[k],d);
2994  }
2995  return r;
2996}
2997
2998ideal idJetW(ideal i,int d, intvec * iv)
2999{
3000  ideal r=idInit(IDELEMS(i),i->rank);
3001  if (ecartWeights!=NULL)
3002  {
3003    WerrorS("cannot compute weighted jets now");
3004  }
3005  else
3006  {
3007    short *w=iv2array(iv);
3008    int k;
3009    for(k=0; k<IDELEMS(i); k++)
3010    {
3011      r->m[k]=ppJetW(i->m[k],d,w);
3012    }
3013    omFreeSize((ADDRESS)w,(pVariables+1)*sizeof(short));
3014  }
3015  return r;
3016}
3017
3018int idMinDegW(ideal M,intvec *w)
3019{
3020  int d=-1;
3021  for(int i=0;i<IDELEMS(M);i++)
3022  {
3023    int d0=pMinDeg(M->m[i],w);
3024    if(-1<d0&&(d0<d||d==-1))
3025      d=d0;
3026  }
3027  return d;
3028}
3029
3030ideal idSeries(int n,ideal M,matrix U,intvec *w)
3031{
3032  for(int i=IDELEMS(M)-1;i>=0;i--)
3033  {
3034    if(U==NULL)
3035      M->m[i]=pSeries(n,M->m[i],NULL,w);
3036    else
3037    {
3038      M->m[i]=pSeries(n,M->m[i],MATELEM(U,i+1,i+1),w);
3039      MATELEM(U,i+1,i+1)=NULL;
3040    }
3041  }
3042  if(U!=NULL)
3043    idDelete((ideal*)&U);
3044  return M;
3045}
3046
3047matrix idDiff(matrix i, int k)
3048{
3049  int e=MATCOLS(i)*MATROWS(i);
3050  matrix r=mpNew(MATROWS(i),MATCOLS(i));
3051  int j;
3052  for(j=0; j<e; j++)
3053  {
3054    r->m[j]=pDiff(i->m[j],k);
3055  }
3056  return r;
3057}
3058
3059matrix idDiffOp(ideal I, ideal J,BOOLEAN multiply)
3060{
3061  matrix r=mpNew(IDELEMS(I),IDELEMS(J));
3062  int i,j;
3063  for(i=0; i<IDELEMS(I); i++)
3064  {
3065    for(j=0; j<IDELEMS(J); j++)
3066    {
3067      MATELEM(r,i+1,j+1)=pDiffOp(I->m[i],J->m[j],multiply);
3068    }
3069  }
3070  return r;
3071}
3072
3073/*3
3074*handles for some ideal operations the ring/syzcomp managment
3075*returns all syzygies (componentwise-)shifted by -syzcomp
3076*or -syzcomp-1 (in case of ideals as input)
3077static ideal idHandleIdealOp(ideal arg,int syzcomp,int isIdeal=FALSE)
3078{
3079  ring orig_ring=currRing;
3080  ring syz_ring=rCurrRingAssure_SyzComp();
3081  rSetSyzComp(length);
3082
3083  ideal s_temp;
3084  if (orig_ring!=syz_ring)
3085    s_temp=idrMoveR_NoSort(arg,orig_ring);
3086  else
3087    s_temp=arg;
3088
3089  ideal s_temp1 = kStd(s_temp,currQuotient,testHomog,&w,NULL,length);
3090  if (w!=NULL) delete w;
3091
3092  if (syz_ring!=orig_ring)
3093  {
3094    idDelete(&s_temp);
3095    rChangeCurrRing(orig_ring);
3096  }
3097
3098  idDelete(&temp);
3099  ideal temp1=idRingCopy(s_temp1,syz_ring);
3100
3101  if (syz_ring!=orig_ring)
3102  {
3103    rChangeCurrRing(syz_ring);
3104    idDelete(&s_temp1);
3105    rChangeCurrRing(orig_ring);
3106    rKill(syz_ring);
3107  }
3108
3109  for (i=0;i<IDELEMS(temp1);i++)
3110  {
3111    if ((temp1->m[i]!=NULL)
3112    && (pGetComp(temp1->m[i])<=length))
3113    {
3114      pDelete(&(temp1->m[i]));
3115    }
3116    else
3117    {
3118      pShift(&(temp1->m[i]),-length);
3119    }
3120  }
3121  temp1->rank = rk;
3122  idSkipZeroes(temp1);
3123
3124  return temp1;
3125}
3126*/
3127/*2
3128* represents (h1+h2)/h2=h1/(h1 intersect h2)
3129*/
3130//ideal idModulo (ideal h2,ideal h1)
3131ideal idModulo (ideal h2,ideal h1, tHomog hom, intvec ** w)
3132{
3133  intvec *wtmp=NULL;
3134
3135  int i,j,k,rk,flength=0,slength,length;
3136  poly p,q;
3137
3138  if (idIs0(h2))
3139    return idFreeModule(si_max(1,h2->ncols));
3140  if (!idIs0(h1))
3141    flength = idRankFreeModule(h1);
3142  slength = idRankFreeModule(h2);
3143  length  = si_max(flength,slength);
3144  if (length==0)
3145  {
3146    length = 1;
3147  }
3148  ideal temp = idInit(IDELEMS(h2),length+IDELEMS(h2));
3149  if ((w!=NULL)&&((*w)!=NULL))
3150  {
3151    //Print("input weights:");(*w)->show(1);PrintLn();
3152    int d;
3153    int k;
3154    wtmp=new intvec(length+IDELEMS(h2));
3155    for (i=0;i<length;i++)
3156      ((*wtmp)[i])=(**w)[i];
3157    for (i=0;i<IDELEMS(h2);i++)
3158    {
3159      poly p=h2->m[i];
3160      if (p!=NULL)
3161      {
3162        d = pDeg(p);
3163        k= pGetComp(p);
3164        if (slength>0) k--;
3165        d +=((**w)[k]);
3166        ((*wtmp)[i+length]) = d;
3167      }
3168    }
3169    //Print("weights:");wtmp->show(1);PrintLn();
3170  }
3171  for (i=0;i<IDELEMS(h2);i++)
3172  {
3173    temp->m[i] = pCopy(h2->m[i]);
3174    q = pOne();
3175    pSetComp(q,i+1+length);
3176    pSetmComp(q);
3177    if(temp->m[i]!=NULL)
3178    {
3179      if (slength==0) pShift(&(temp->m[i]),1);
3180      p = temp->m[i];
3181      while (pNext(p)!=NULL) pIter(p);
3182      pNext(p) = q;
3183    }
3184    else
3185      temp->m[i]=q;
3186  }
3187  rk = k = IDELEMS(h2);
3188  if (!idIs0(h1))
3189  {
3190    pEnlargeSet(&(temp->m),IDELEMS(temp),IDELEMS(h1));
3191    IDELEMS(temp) += IDELEMS(h1);
3192    for (i=0;i<IDELEMS(h1);i++)
3193    {
3194      if (h1->m[i]!=NULL)
3195      {
3196        temp->m[k] = pCopy(h1->m[i]);
3197        if (flength==0) pShift(&(temp->m[k]),1);
3198        k++;
3199      }
3200    }
3201  }
3202
3203  ring orig_ring=currRing;
3204  ring syz_ring=rCurrRingAssure_SyzComp();
3205  rSetSyzComp(length);
3206  ideal s_temp;
3207
3208  if (syz_ring != orig_ring)
3209  {
3210    s_temp = idrMoveR_NoSort(temp, orig_ring);
3211  }
3212  else
3213  {
3214    s_temp = temp;
3215  }
3216
3217  idTest(s_temp);
3218  ideal s_temp1 = kStd(s_temp,currQuotient,hom,&wtmp,NULL,length);
3219
3220  //if (wtmp!=NULL)  Print("output weights:");wtmp->show(1);PrintLn();
3221  if ((w!=NULL) && (*w !=NULL) && (wtmp!=NULL))
3222  {
3223    delete *w;
3224    *w=new intvec(IDELEMS(h2));
3225    for (i=0;i<IDELEMS(h2);i++)
3226      ((**w)[i])=(*wtmp)[i+length];
3227  }
3228  if (wtmp!=NULL) delete wtmp;
3229
3230  for (i=0;i<IDELEMS(s_temp1);i++)
3231  {
3232    if ((s_temp1->m[i]!=NULL)
3233    && (pGetComp(s_temp1->m[i])<=length))
3234    {
3235      pDelete(&(s_temp1->m[i]));
3236    }
3237    else
3238    {
3239      pShift(&(s_temp1->m[i]),-length);
3240    }
3241  }
3242  s_temp1->rank = rk;
3243  idSkipZeroes(s_temp1);
3244
3245  if (syz_ring!=orig_ring)
3246  {
3247    rChangeCurrRing(orig_ring);
3248    s_temp1 = idrMoveR_NoSort(s_temp1, syz_ring);
3249    rKill(syz_ring);
3250    // Hmm ... here seems to be a memory leak
3251    // However, simply deleting it causes memory trouble
3252    // idDelete(&s_temp);
3253  }
3254  else
3255  {
3256    idDelete(&temp);
3257  }
3258  idTest(s_temp1);
3259  return s_temp1;
3260}
3261
3262int idElem(const ideal F)
3263{
3264  int i=0,j=IDELEMS(F)-1;
3265
3266  while(j>=0)
3267  {
3268    if ((F->m)[j]!=NULL) i++;
3269    j--;
3270  }
3271  return i;
3272}
3273
3274/*
3275*computes module-weights for liftings of homogeneous modules
3276*/
3277intvec * idMWLift(ideal mod,intvec * weights)
3278{
3279  if (idIs0(mod)) return new intvec(2);
3280  int i=IDELEMS(mod);
3281  while ((i>0) && (mod->m[i-1]==NULL)) i--;
3282  intvec *result = new intvec(i+1);
3283  while (i>0)
3284  {
3285    (*result)[i]=pFDeg(mod->m[i],currRing)+(*weights)[pGetComp(mod->m[i])];
3286  }
3287  return result;
3288}
3289
3290/*2
3291*sorts the kbase for idCoef* in a special way (lexicographically
3292*with x_max,...,x_1)
3293*/
3294ideal idCreateSpecialKbase(ideal kBase,intvec ** convert)
3295{
3296  int i;
3297  ideal result;
3298
3299  if (idIs0(kBase)) return NULL;
3300  result = idInit(IDELEMS(kBase),kBase->rank);
3301  *convert = idSort(kBase,FALSE);
3302  for (i=0;i<(*convert)->length();i++)
3303  {
3304    result->m[i] = pCopy(kBase->m[(**convert)[i]-1]);
3305  }
3306  return result;
3307}
3308
3309/*2
3310*returns the index of a given monom in the list of the special kbase
3311*/
3312int idIndexOfKBase(poly monom, ideal kbase)
3313{
3314  int j=IDELEMS(kbase);
3315
3316  while ((j>0) && (kbase->m[j-1]==NULL)) j--;
3317  if (j==0) return -1;
3318  int i=pVariables;
3319  while (i>0)
3320  {
3321    loop
3322    {
3323      if (pGetExp(monom,i)>pGetExp(kbase->m[j-1],i)) return -1;
3324      if (pGetExp(monom,i)==pGetExp(kbase->m[j-1],i)) break;
3325      j--;
3326      if (j==0) return -1;
3327    }
3328    if (i==1)
3329    {
3330      while(j>0)
3331      {
3332        if (pGetComp(monom)==pGetComp(kbase->m[j-1])) return j-1;
3333        if (pGetComp(monom)>pGetComp(kbase->m[j-1])) return -1;
3334        j--;
3335      }
3336    }
3337    i--;
3338  }
3339  return -1;
3340}
3341
3342/*2
3343*decomposes the monom in a part of coefficients described by the
3344*complement of how and a monom in variables occuring in how, the
3345*index of which in kbase is returned as integer pos (-1 if it don't
3346*exists)
3347*/
3348poly idDecompose(poly monom, poly how, ideal kbase, int * pos)
3349{
3350  int i;
3351  poly coeff=pOne(), base=pOne();
3352
3353  for (i=1;i<=pVariables;i++)
3354  {
3355    if (pGetExp(how,i)>0)
3356    {
3357      pSetExp(base,i,pGetExp(monom,i));
3358    }
3359    else
3360    {
3361      pSetExp(coeff,i,pGetExp(monom,i));
3362    }
3363  }
3364  pSetComp(base,pGetComp(monom));
3365  pSetm(base);
3366  pSetCoeff(coeff,nCopy(pGetCoeff(monom)));
3367  pSetm(coeff);
3368  *pos = idIndexOfKBase(base,kbase);
3369  if (*pos<0)
3370    pDelete(&coeff);
3371  pDelete(&base);
3372  return coeff;
3373}
3374
3375/*2
3376*returns a matrix A of coefficients with kbase*A=arg
3377*if all monomials in variables of how occur in kbase
3378*the other are deleted
3379*/
3380matrix idCoeffOfKBase(ideal arg, ideal kbase, poly how)
3381{
3382  matrix result;
3383  ideal tempKbase;
3384  poly p,q;
3385  intvec * convert;
3386  int i=IDELEMS(kbase),j=IDELEMS(arg),k,pos;
3387#if 0
3388  while ((i>0) && (kbase->m[i-1]==NULL)) i--;
3389  if (idIs0(arg))
3390    return mpNew(i,1);
3391  while ((j>0) && (arg->m[j-1]==NULL)) j--;
3392  result = mpNew(i,j);
3393#else
3394  result = mpNew(i, j);
3395  while ((j>0) && (arg->m[j-1]==NULL)) j--;
3396#endif
3397
3398  tempKbase = idCreateSpecialKbase(kbase,&convert);
3399  for (k=0;k<j;k++)
3400  {
3401    p = arg->m[k];
3402    while (p!=NULL)
3403    {
3404      q = idDecompose(p,how,tempKbase,&pos);
3405      if (pos>=0)
3406      {
3407        MATELEM(result,(*convert)[pos],k+1) =
3408            pAdd(MATELEM(result,(*convert)[pos],k+1),q);
3409      }
3410      else
3411        pDelete(&q);
3412      pIter(p);
3413    }
3414  }
3415  idDelete(&tempKbase);
3416  return result;
3417}
3418
3419/*3
3420* searches for units in the components of the module arg and
3421* returns the first one
3422*/
3423static int idReadOutUnits(ideal arg,int* comp)
3424{
3425  if (idIs0(arg)) return -1;
3426  int i=0,j, generator=-1;
3427  int rk_arg=arg->rank; //idRankFreeModule(arg);
3428  int * componentIsUsed =(int *)omAlloc((rk_arg+1)*sizeof(int));
3429  poly p,q;
3430
3431  while ((generator<0) && (i<IDELEMS(arg)))
3432  {
3433    memset(componentIsUsed,0,(rk_arg+1)*sizeof(int));
3434    p = arg->m[i];
3435    while (p!=NULL)
3436    {
3437      j = pGetComp(p);
3438      if (componentIsUsed[j]==0)
3439      {
3440        if (pLmIsConstantComp(p))
3441        {
3442          generator = i;
3443          componentIsUsed[j] = 1;
3444        }
3445        else
3446        {
3447          componentIsUsed[j] = -1;
3448        }
3449      }
3450      else if (componentIsUsed[j]>0)
3451      {
3452        (componentIsUsed[j])++;
3453      }
3454      pIter(p);
3455    }
3456    i++;
3457  }
3458  i = 0;
3459  *comp = -1;
3460  for (j=0;j<=rk_arg;j++)
3461  {
3462    if (componentIsUsed[j]>0)
3463    {
3464      if ((*comp==-1) || (componentIsUsed[j]<i))
3465      {
3466        *comp = j;
3467        i= componentIsUsed[j];
3468      }
3469    }
3470  }
3471  omFree(componentIsUsed);
3472  return generator;
3473}
3474
3475#if 0
3476static void idDeleteComp(ideal arg,int red_comp)
3477{
3478  int i,j;
3479  poly p;
3480
3481  for (i=IDELEMS(arg)-1;i>=0;i--)
3482  {
3483    p = arg->m[i];
3484    while (p!=NULL)
3485    {
3486      j = pGetComp(p);
3487      if (j>red_comp)
3488      {
3489        pSetComp(p,j-1);
3490        pSetm(p);
3491      }
3492      pIter(p);
3493    }
3494  }
3495  (arg->rank)--;
3496}
3497#endif
3498
3499static void idDeleteComps(ideal arg,int* red_comp,int del)
3500// red_comp is an array [0..args->rank]
3501{
3502  int i,j;
3503  poly p;
3504
3505  for (i=IDELEMS(arg)-1;i>=0;i--)
3506  {
3507    p = arg->m[i];
3508    while (p!=NULL)
3509    {
3510      j = pGetComp(p);
3511      if (red_comp[j]!=j)
3512      {
3513        pSetComp(p,red_comp[j]);
3514        pSetmComp(p);
3515      }
3516      pIter(p);
3517    }
3518  }
3519  (arg->rank) -= del;
3520}
3521
3522/*2
3523* returns the presentation of an isomorphic, minimally
3524* embedded  module (arg represents the quotient!)
3525*/
3526ideal idMinEmbedding(ideal arg,BOOLEAN inPlace, intvec **w)
3527{
3528  if (idIs0(arg)) return idInit(1,arg->rank);
3529  int i,next_gen,next_comp;
3530  ideal res=arg;
3531
3532  if (!inPlace) res = idCopy(arg);
3533  res->rank=si_max(res->rank,idRankFreeModule(res));
3534  int *red_comp=(int*)omAlloc((res->rank+1)*sizeof(int));
3535  for (i=res->rank;i>=0;i--) red_comp[i]=i;
3536
3537  int del=0;
3538  loop
3539  {
3540    next_gen = idReadOutUnits(res,&next_comp);
3541    if (next_gen<0) break;
3542    del++;
3543    syGaussForOne(res,next_gen,next_comp,0,IDELEMS(res));
3544    for(i=next_comp+1;i<=arg->rank;i++) red_comp[i]--;
3545    if ((w !=NULL)&&(*w!=NULL))
3546    {
3547      for(i=next_comp;i<(*w)->length();i++) (**w)[i-1]=(**w)[i];
3548    }
3549  }
3550
3551  idDeleteComps(res,red_comp,del);
3552  idSkipZeroes(res);
3553  omFree(red_comp);
3554
3555  if ((w !=NULL)&&(*w!=NULL) &&(del>0))
3556  {
3557    intvec *wtmp=new intvec((*w)->length()-del);
3558    for(i=0;i<res->rank;i++) (*wtmp)[i]=(**w)[i];
3559    delete *w;
3560    *w=wtmp;
3561  }
3562  return res;
3563}
3564
3565/*2
3566* transpose a module
3567*/
3568ideal idTransp(ideal a)
3569{
3570  int r = a->rank, c = IDELEMS(a);
3571  ideal b =  idInit(r,c);
3572
3573  for (int i=c; i>0; i--)
3574  {
3575    poly p=a->m[i-1];
3576    while(p!=NULL)
3577    {
3578      poly h=pHead(p);
3579      int co=pGetComp(h)-1;
3580      pSetComp(h,i);
3581      pSetmComp(h);
3582      b->m[co]=pAdd(b->m[co],h);
3583      pIter(p);
3584    }
3585  }
3586  return b;
3587}
3588
3589intvec * idQHomWeight(ideal id)
3590{
3591  poly head, tail;
3592  int k;
3593  int in=IDELEMS(id)-1, ready=0, all=0,
3594      coldim=pVariables, rowmax=2*coldim;
3595  if (in<0) return NULL;
3596  intvec *imat=new intvec(rowmax+1,coldim,0);
3597
3598  do
3599  {
3600    head = id->m[in--];
3601    if (head!=NULL)
3602    {
3603      tail = pNext(head);
3604      while (tail!=NULL)
3605      {
3606        all++;
3607        for (k=1;k<=coldim;k++)
3608          IMATELEM(*imat,all,k) = pGetExpDiff(head,tail,k);
3609        if (all==rowmax)
3610        {
3611          ivTriangIntern(imat, ready, all);
3612          if (ready==coldim)
3613          {
3614            delete imat;
3615            return NULL;
3616          }
3617        }
3618        pIter(tail);
3619      }
3620    }
3621  } while (in>=0);
3622  if (all>ready)
3623  {
3624    ivTriangIntern(imat, ready, all);
3625    if (ready==coldim)
3626    {
3627      delete imat;
3628      return NULL;
3629    }
3630  }
3631  intvec *result = ivSolveKern(imat, ready);
3632  delete imat;
3633  return result;
3634}
3635
3636BOOLEAN idIsZeroDim(ideal I)
3637{
3638  BOOLEAN *UsedAxis=(BOOLEAN *)omAlloc0(pVariables*sizeof(BOOLEAN));
3639  int i,n;
3640  poly po;
3641  BOOLEAN res=TRUE;
3642  for(i=IDELEMS(I)-1;i>=0;i--)
3643  {
3644    po=I->m[i];
3645    if ((po!=NULL) &&((n=pIsPurePower(po))!=0)) UsedAxis[n-1]=TRUE;
3646  }
3647  for(i=pVariables-1;i>=0;i--)
3648  {
3649    if(UsedAxis[i]==FALSE) {res=FALSE; break;} // not zero-dim.
3650  }
3651  omFreeSize(UsedAxis,pVariables*sizeof(BOOLEAN));
3652  return res;
3653}
3654
3655void idNormalize(ideal I)
3656{
3657  if (rField_has_simple_inverse()) return; /* Z/p, GF(p,n), R, long R/C */
3658  int i;
3659  poly p;
3660  for(i=IDELEMS(I)-1;i>=0;i--)
3661  {
3662    p=I->m[i] ;
3663    while(p!=NULL)
3664    {
3665      nNormalize(pGetCoeff(p));
3666      pIter(p);
3667    }
3668  }
3669}
3670
3671#include "clapsing.h"
3672
3673poly id_GCD(poly f, poly g, const ring r)
3674{
3675  ring save_r=currRing;
3676  rChangeCurrRing(r);
3677  ideal I=idInit(2,1); I->m[0]=f; I->m[1]=g;
3678  intvec *w = NULL;
3679  ideal S=idSyzygies(I,testHomog,&w);
3680  if (w!=NULL) delete w;
3681  poly gg=pTakeOutComp(&(S->m[0]),2);
3682  idDelete(&S);
3683  poly gcd_p=singclap_pdivide(f,gg);
3684  pDelete(&gg);
3685  rChangeCurrRing(save_r);
3686  return gcd_p;
3687}
Note: See TracBrowser for help on using the repository browser.