Changeset e2af3af in git for Singular/LIB/grwalk.lib


Ignore:
Timestamp:
Jul 1, 2019, 4:07:30 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
2050058328d464a197ff417b127e85fe08b3a3cd
Parents:
77006ca97061dca7e90bdacf1fbaff76644280a24142c906ad243d17ff54542115db04d9e8264de7
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2019-07-01 16:07:30+02:00
git-committer:
GitHub <noreply@github.com>2019-07-01 16:07:30+02:00
Message:
Merge pull request #936 from steenpass/execute

replace some occurrences of execute()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/grwalk.lib

    r77006c re2af3af  
    1818ZSEE ALSO: rwalk_lib; swalk_lib
    1919";
     20
     21LIB "ring.lib";
    2022
    2123//////////////////////////////////////////////////////////////////////////////
     
    236238   def xR = basering;
    237239
    238    execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     240   ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    239241   def old_ring = basering;
    240242
     
    292294   def xR = basering;
    293295
    294    execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     296   ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    295297   def old_ring = basering;
    296298   //print("//** help ring = " + string(basering));
     
    328330   option(redSB);
    329331   def xR = basering;
    330 
    331    execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     332   ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    332333   def old_ring = basering;
    333334   //print("//** help ring = " + string(basering));
     
    377378   option(redSB);   def xR = basering;
    378379
    379    execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     380   ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    380381   def old_ring = basering;
    381382
     
    435436  def xR = basering;
    436437
    437   execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     438  ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    438439  def old_ring = basering;
    439440
     
    483484  def xR = basering;
    484485
    485   execute("ring ostR = ("+charstr(xR)+"),("+varstr(xR)+"),"+ord_str+";");
     486  ring ostR = create_ring(ringlist(xR)[1],"("+varstr(xR)+")",ord_str,"no_minpoly");
    486487  def old_ring = basering;
    487488
Note: See TracChangeset for help on using the changeset viewer.