Changeset 128379 in git


Ignore:
Timestamp:
Jan 7, 2014, 5:42:13 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
Children:
e1189c35fd3779e98427b5d018b22921bfcb3d99
Parents:
a5275ef9ddf687be7aeadda480e4e7d6c265dd4c
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-07 17:42:13+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-07 17:47:19+01:00
Message:
chg: activate ehv.lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ehv.lib

    ra5275ef r128379  
    329329                              help of regular sequences
    330330                     = 2    : does not try to find a regular sequence
    331          Strategy[3]        > strategy for the computation of ideal quotients
    332                      = n    : uses quot(.,.,n) for the ideal quotient computations
    333331         If no second argument is given then Strategy=(0,0,0) is used.
    334332EXAMPLE: example equiRadEHV; shows an example"
     
    365363              int strategy = #[2];
    366364            }
    367           if(size(#) > 2)
    368             {
    369               int quoStr = #[3];
    370             }
    371           else
    372             {
    373               int quoStr = 0;
    374             }
    375365        }
    376366      else
    377367        {
    378368          int strategy = 0;
    379           int quoStr = 0;
    380369        }
    381370    }
     
    384373      int equStr = 0;
    385374      int strategy = 0;
    386       int quoStr = 0;
    387375    }
    388376
     
    417405          J = aJacob(m[2],d);
    418406          if(printlevel > 2){"Leaving equiRadEHV.";}
    419           return(quot1(m[2],J,quoStr));
     407          return(quotient(m[2],J));
    420408        }
    421409
     
    460448          J = aJacob(I0,d);
    461449          if(printlevel > 2){"1st quotient.";}
    462           radI0 = quot1(I0,J,quoStr);
     450          radI0 = quotient(I0,J);
    463451          if(printlevel > 2){"2nd quotient.";}
    464           L = quot1(radI0,m[2],quoStr);
     452          L = quotient(radI0,m[2]);
    465453          if(printlevel > 2){"3rd quotient.";}
    466           radI1 = quot1(radI0,L,quoStr);
     454          radI1 = quotient(radI0,L);
    467455          attrib(radI1,"isEquidimensional",1);
    468456          attrib(radI1,"isRadical",1);
     
    496484        {
    497485          if(printlevel > 2){"Quotient-Computation.";}
    498           I = quot1(I,J,quoStr);
     486          I = quotient(I,J);
    499487          if(printlevel > 2){"Computing the a-th Jacobian";}
    500488            J = aJacob(I,a);
     
    506494  J = aJacob(I,d);
    507495  if(printlevel > 2){"Quotient-Computation.";}
    508   I = quot1(I,J,quoStr);
     496  I = quotient(I,J);
    509497  attrib(I,"isEquidimensional",1);
    510498  attrib(I,"isRadical",1);
  • Singular/singular-libs

    ra5275ef r128379  
    1212        cisimplicial.lib classify.lib \
    1313        compregb.lib control.lib crypto.lib curvepar.lib decodegb.lib \
    14         deform.lib elim.lib equising.lib finvar.lib general.lib gmspoly.lib \
     14        deform.lib ehv.lib elim.lib  equising.lib  finvar.lib general.lib gmspoly.lib \
    1515        gmssing.lib graphics.lib grobcov.lib groups.lib grwalk.lib \
    1616        hnoether.lib \
Note: See TracChangeset for help on using the changeset viewer.