Changeset ad3aa7 in git


Ignore:
Timestamp:
Jul 29, 2011, 11:58:56 AM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
7ac612964d7ab2d05f0ce6d464ce76b51757f776
Parents:
71955d1046512d6a8fedecbd18e77a75a4bd5fa0
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-29 11:58:56+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:01:15+01:00
Message:
id_MinDegW -> simpleideals.h, simpleideals.cc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/ideals.cc

    r71955d rad3aa7  
    20202020}
    20212021
    2022 int idMinDegW(ideal M,intvec *w)
    2023 {
    2024   int d=-1;
    2025   for(int i=0;i<IDELEMS(M);i++)
    2026   {
    2027     int d0=pMinDeg(M->m[i],w);
    2028     if(-1<d0&&(d0<d||d==-1))
    2029       d=d0;
    2030   }
    2031   return d;
    2032 }
    2033 
    20342022ideal idSeries(int n,ideal M,matrix U,intvec *w)
    20352023{
  • kernel/ideals.h

    r71955d rad3aa7  
    168168ideal   idJet(ideal i,int d);
    169169ideal   idJetW(ideal i,int d, intvec * iv);
    170 int idMinDegW(ideal M,intvec *w);
    171170ideal   idSeries(int n,ideal M,matrix U=NULL,intvec *w=NULL);
    172171
  • libpolys/polys/simpleideals.cc

    r71955d rad3aa7  
    16781678}
    16791679
     1680int id_MinDegW(ideal M,intvec *w, const ring r)
     1681{
     1682  int d=-1;
     1683  for(int i=0;i<IDELEMS(M);i++)
     1684  {
     1685    if (M->m[i]!=NULL)
     1686    {
     1687      int d0=p_MinDeg(M->m[i],w,r);
     1688      if(-1<d0&&((d0<d)||(d==-1)))
     1689        d=d0;
     1690    }
     1691  }
     1692  return d;
     1693}
     1694
    16801695// #include <kernel/clapsing.h>
    16811696
  • libpolys/polys/simpleideals.h

    r71955d rad3aa7  
    6060/// normialize all polys in id
    6161void    id_Normalize(ideal id, const ring r);
     62
     63int id_MinDegW(ideal M,intvec *w, const ring r);
    6264
    6365#ifdef PDEBUG
Note: See TracChangeset for help on using the changeset viewer.