Changeset c60d60 in git


Ignore:
Timestamp:
Dec 12, 2008, 12:26:34 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
a66b360142fae6591d10aa8af137424a61d6516b
Parents:
361b493dc6bc4d23de6722ac729cca0af628e72a
Message:
*hannes: c. Gorzel


git-svn-id: file:///usr/local/Singular/svn/trunk@11242 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular/LIB
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/general.lib

    r361b493 rc60d60  
    33//eric, added absValue 11.04.2002
    44///////////////////////////////////////////////////////////////////////////////
    5 version="$Id: general.lib,v 1.57 2008-08-20 16:33:40 Singular Exp $";
     5version="$Id: general.lib,v 1.58 2008-12-12 11:26:34 Singular Exp $";
    66category="General purpose";
    77info="
     
    318318    { dbprint(printlevel-voice+3,
    319319      "// total memory allocated, at the moment, by SINGULAR (kilobyte):"); }
    320    }
    321    return ((memory(n)+1023)/1024);
     320  }
     321  return ((memory(n)+1023) div 1024);
    322322}
    323323example
  • Singular/LIB/poly.lib

    r361b493 rc60d60  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: poly.lib,v 1.48 2008-11-12 17:37:29 Singular Exp $";
     2version="$Id: poly.lib,v 1.49 2008-12-12 11:26:34 Singular Exp $";
    33category="General purpose";
    44info="
     
    831831"
    832832{
     833  if (f==0) { return(number(1)); }
    833834  return(leadcoef(f)/leadcoef(cleardenom(f)));
    834835}
  • Singular/LIB/realrad.lib

    r361b493 rc60d60  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: realrad.lib,v 1.6 2008-02-22 14:12:29 Singular Exp $";
     2version="$Id: realrad.lib,v 1.7 2008-12-12 11:26:34 Singular Exp $";
    33category="real algebra";
    44info="
     
    11421142example
    11431143{ "EXAMPLE:"; echo = 2;
    1144   list L1="Nur","ein","Beispiel";
    1145   permutaion(L1);
     1144  list L1="Just","an","example";
     1145  permutation(L1);
    11461146  list L2=1,2,3,4;
    1147   permutaion(L2);
     1147  permutation(L2);
    11481148}
    11491149static proc simplify_gen(poly f)
Note: See TracChangeset for help on using the changeset viewer.