Changeset cd6f8d2 in git


Ignore:
Timestamp:
Jan 25, 2017, 11:49:23 AM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
f71c1a2f42ee67a91fc918c338ef04f7d9b92c3f
Parents:
90753b3fa39cebd34e9770d6afb4e740c0f3893546174ab389855153a9b0fc8799d070388467c4d1
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2017-01-25 11:49:23+01:00
git-committer:
GitHub <noreply@github.com>2017-01-25 11:49:23+01:00
Message:
Merge pull request #813 from sebasguts/spielwiese

Fixed wrong call of surf execute script
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/classify_aeq.lib

    r46174a rcd6f8d2  
    13221322//computes the Sagbi normal form
    13231323   list L=1;
     1324   poly re;
    13241325   map psi;
    13251326   f=jet(f,b);
    13261327   if(f==0){return(f);}
    1327    while((f!=0) && (L[1]!=0))
     1328   while(f!=0)
    13281329   {
    13291330     L= algebra_containment(lead(f),lead(I),1);
     
    13351336        kill S;
    13361337     }
    1337    }
    1338    return (lead(f)+sagbiNF(f-lead(f),I,b));
     1338     else
     1339     {
     1340        re=re+lead(f);
     1341        f=f-lead(f);
     1342     }
     1343   }
     1344   return (re);
    13391345}
    13401346
  • Singular/LIB/surf_jupyter.lib

    r90753b rcd6f8d2  
    143143
    144144    surf_call = "singularsurf_jupyter ";
    145     surf_call = surf_call + l + " " + current_pid + " >/dev/null 2>&1";
     145    surf_call = surf_call + l + " " + current_pid + " 2>&1";
    146146    i = system("sh", surf_call);
    147147    if (i != 0)
  • kernel/GBEngine/kstd2.cc

    r46174a rcd6f8d2  
    17521752      if (cnt==0)
    17531753      {
     1754        kBucketCanonicalize(P.bucket);
    17541755        cnt=REDNF_CANONICALIZE;
    1755         kBucketCanonicalize(P.bucket);
    17561756      }
    17571757      h = kBucketGetLm(P.bucket);   // FRAGE OLIVER
Note: See TracChangeset for help on using the changeset viewer.