Changeset 034ce1 in git for Singular/LIB/classify.lib


Ignore:
Timestamp:
May 12, 2000, 2:25:47 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
7bb71fad3a9d45a2e30c8458373b89a01eecf500
Parents:
73d7b5cf051d2bb349542039ed3ac2b513f7c109
Message:
* hannes: execute


git-svn-id: file:///usr/local/Singular/svn/trunk@4322 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/classify.lib

    r73d7b5 r034ce1  
    1 e// $Id: classify.lib,v 1.41 2000-05-05 18:40:29 obachman Exp $
     1e// $Id: classify.lib,v 1.42 2000-05-12 12:25:41 Singular Exp $
    22// KK, last modified: 04.04.1998
    33///////////////////////////////////////////////////////////////////////////////
    44
    5 version  = "$Id: classify.lib,v 1.41 2000-05-05 18:40:29 obachman Exp $";
     5version  = "$Id: classify.lib,v 1.42 2000-05-12 12:25:41 Singular Exp $";
    66info="
    77LIBRARY:  classify.lib  Procedures for the Arnold-Classifier of Singularities
     
    23682368    S = "f = ", Tp, ";";
    23692369    debug_log(2,"S=", S, " Tp=", Tp, "Key=", Key);
    2370     execute S;
    2371     execute read(dbmLink, Key)+";";
     2370    execute(S);
     2371    execute(read(dbmLink, Key)+";");
    23722372    debug_log(1, "Polynom f=", f,  "  crk=", crk, "  Mu=", Mu,
    23732373                " MlnCd=", MlnCd);
     
    24862486    if( s != "" && defined(@DeBug)==0) {
    24872487      s="newDebug="+s;
    2488       execute s;
     2488      execute(s);
    24892489    }
    24902490  }
     
    26582658  def ring_save=basering;
    26592659
    2660   execute @ringdisplay;
     2660  execute(@ringdisplay);
    26612661  map showpoly=ring_save,maxideal(1);
    26622662  s = string(showpoly(g));
     
    27082708    debug_log(8, "  Number of columns: 0");
    27092709    s2 = "k = "+s1+";";
    2710     execute s2;
     2710    execute(s2);
    27112711    if( (Typ=="A[") || (Typ=="D[") ) { s3 = "k"; }
    27122712    if( Typ == "E[") { t = 6; }
     
    27432743    b  = find(s1, ",");
    27442744    s2 = "k = ",s1[1..b-1],";";
    2745     execute s2;
     2745    execute(s2);
    27462746    s1 = s1[b+1..size(s1)];
    27472747    if(find(s1, ",") == 0) {
    27482748      debug_log(8, "  Number of columns 1");
    27492749      s2 = "r = "+s1+";";
    2750       execute s2;
     2750      execute(s2);
    27512751      s4 = "r";
    27522752      s3 = "k";
     
    27682768      b  = find(s1, ",");
    27692769      s2 = "r = ",s1[1..b-1],";";
    2770       execute s2;
     2770      execute(s2);
    27712771      s2 = "s = ",s1[b+1..size(s1)],";";
    2772       execute s2;
     2772      execute(s2);
    27732773      if(Typ=="Y[") { s2 = "Y[k,r,s]"; }
    27742774      if(Typ=="Z[") { s2 = "Z[k,r,s]"; }
Note: See TracChangeset for help on using the changeset viewer.