Changeset e480be8 in git for Singular/LIB/mprimdec.lib


Ignore:
Timestamp:
Jul 31, 2019, 10:36:39 PM (5 years ago)
Author:
Sachin <sachinkm308@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
31212ff491b316ea34617fe1509cfbc676781d4b
Parents:
eaa04d99a77423d7f9cde832587a68b8005c46d8
git-author:
Sachin <sachinkm308@gmail.com>2019-07-31 22:36:39+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2019-08-06 17:17:16+02:00
Message:
replacing execute with create_ring (5)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/mprimdec.lib

    reaa04d re480be8  
    224224  {
    225225    def BAS=basering;
    226     execute("ring Rloc=("+charstr(basering)+","+varstr(basering)+"),dummy,(C,dp);");
     226    ring Rloc = create_ring("("+charstr(basering)+","+varstr(basering)+")", "dummy", "(C,dp)");
    227227    module @N=imap(BAS, @N);
    228228    poly @q=prepareSat(@N);
     
    634634  if(size(ann)==0)
    635635  {
    636     execute("ring Rloc=("+charstr(basering)+","+varstr(basering)+"),dummy,(C,dp);");
     636    ring Rloc = create_ring("("+charstr(basering)+","+varstr(basering)+")", "dummy", "(C,dp)");
    637637    module @N=imap(BAS, @N);
    638638    poly @q=prepareSat(@N);
     
    14241424  if(size(ann)==0)      //check, whether ann=0
    14251425  {
    1426    execute("ring Rloc=("+charstr(basering)+","+varstr(basering)+"),dummy,(C,dp);");
     1426   ring Rloc = create_ring("("+charstr(basering)+","+varstr(basering)+")", "dummy", "(C,dp)");
    14271427   module @N=clrSBmod(imap(BAS, @N));
    14281428   module @M=freemodule(nrows(@N));
     
    15531553      ring RAU = create_ring(ringlist(basering)[1], "("+indep[@k1][@k2][1]+","+indep[@k1][@k2][2]+")", indep[@k1][@k2][3], "no_minpoly");
    15541554      module @N=std(imap(BAS,@N)); // the standard basis in (R[U])[A]
    1555       execute("ring Rloc=("+charstr(basering)+","+indep[@k1][@k2][2]+"),("+indep[@k1][@k2][1]+"),(C,dp);");
     1555      ring Rloc = create_ring("("+charstr(basering)+","+indep[@k1][@k2][2]+")", "("+indep[@k1][@k2][1]+")", "(C,dp)");
    15561556      module @N=imap(RAU,@N); //std in lokalisierung
    15571557      @N=clrSBmod(@N);
Note: See TracChangeset for help on using the changeset viewer.