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


Ignore:
Timestamp:
May 12, 2000, 2:25:47 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
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/general.lib

    r73d7b5 r034ce1  
    1 // $Id: general.lib,v 1.26 2000-04-27 10:07:13 obachman Exp $
     1// $Id: general.lib,v 1.27 2000-05-12 12:25:47 Singular Exp $
    22//GMG, last modified 18.6.99
    33///////////////////////////////////////////////////////////////////////////////
    44
    5 version="$Id: general.lib,v 1.26 2000-04-27 10:07:13 obachman Exp $";
     5version="$Id: general.lib,v 1.27 2000-05-12 12:25:47 Singular Exp $";
    66info="
    77LIBRARY:  general.lib   PROCEDURES OF GENERAL TYPE
     
    8080   string sR = "ring R = (0,"+A_Z("A",6)+"),("+A_Z("a",10)+"),dp;";
    8181   sR;
    82    execute sR;
     82   execute(sR);
    8383   R;
    8484}
     
    740740      if( find(os,",") )
    741741      {
    742          execute "nw = "+os+";";
     742         execute("nw = "+os+";");
    743743         if( size(nw) > ii )
    744744         {
     
    751751      else
    752752      {
    753          execute "q = "+os+";";
     753         execute("q = "+os+";");
    754754         if( q > ii )
    755755         {
     
    853853      if ( typeof(#[1])=="string" )
    854854      {
    855          execute "ring r1 =("+charstr(P)+"),("+varstr(P)+"),("+#[1]+");";
     855         execute("ring r1 =("+charstr(P)+"),("+varstr(P)+"),("+#[1]+");");
    856856         def i = imap(P,id);
    857857         v = sortvec(i);
     
    881881         }
    882882      }
    883       execute "ring r=0,x(1..s),("+o+");";
     883      execute("ring r=0,x(1..s),("+o+");");
    884884      ideal i;
    885885      poly f;
Note: See TracChangeset for help on using the changeset viewer.