Changeset f2aefad in git for Singular/LIB/ehv.lib


Ignore:
Timestamp:
Jul 1, 2019, 2:07:15 PM (5 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
468f1cd0a1858015dd4df9d29a80273b108974f0
Parents:
67b671f4c50b45b76df2adaa82951717ba011091
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2019-07-01 14:07:15+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2019-07-01 15:15:49+02:00
Message:
fix replacements of execute() by create_ring()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ehv.lib

    r67b671 rf2aefad  
    743743                  //..and insert f in g1...
    744744                  ring newR = create_ring(ringlist(R)[1], "(y(1))", "(" + ordstr(R) + ")", "no_minpoly");
    745                   poly g2 = imap(R,g1);
     745                  poly g2 = imap(R,g1);
    746746                  setring base;
    747747                  h = fetch(newR,g2);
     
    10391039              ideal homoJ = fetch(base,K);
    10401040              homoJ = groebner(homoJ);
    1041               ring newR = create_ring(ringlist(base)[1], "(x(1..n),t)", "dp", "no_minpoly");
    1042               ideal homoK = fetch(homoR,homoJ);
     1041              list l2;
     1042              for (int ii = 1; ii <= n; ii++)
     1043              {
     1044                l2[i] = "x("+string(ii)+")";
     1045              }
     1046              l2[n+1] = "t";
     1047              ring newR = create_ring(ringlist(base)[1], l2, "dp", "no_minpoly");
     1048              ideal homoK = fetch(homoR,homoJ);
    10431049              homoK = homog(homoK,t);
    10441050              attrib(homoK,"isEquidimensional",1);
Note: See TracChangeset for help on using the changeset viewer.