Changeset c60d60 in git
- Timestamp:
- Dec 12, 2008, 12:26:34 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- a66b360142fae6591d10aa8af137424a61d6516b
- Parents:
- 361b493dc6bc4d23de6722ac729cca0af628e72a
- Location:
- Singular/LIB
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/general.lib
r361b493 rc60d60 3 3 //eric, added absValue 11.04.2002 4 4 /////////////////////////////////////////////////////////////////////////////// 5 version="$Id: general.lib,v 1.5 7 2008-08-20 16:33:40Singular Exp $";5 version="$Id: general.lib,v 1.58 2008-12-12 11:26:34 Singular Exp $"; 6 6 category="General purpose"; 7 7 info=" … … 318 318 { dbprint(printlevel-voice+3, 319 319 "// total memory allocated, at the moment, by SINGULAR (kilobyte):"); } 320 321 return ((memory(n)+1023)/1024);320 } 321 return ((memory(n)+1023) div 1024); 322 322 } 323 323 example -
Singular/LIB/poly.lib
r361b493 rc60d60 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: poly.lib,v 1.4 8 2008-11-12 17:37:29Singular Exp $";2 version="$Id: poly.lib,v 1.49 2008-12-12 11:26:34 Singular Exp $"; 3 3 category="General purpose"; 4 4 info=" … … 831 831 " 832 832 { 833 if (f==0) { return(number(1)); } 833 834 return(leadcoef(f)/leadcoef(cleardenom(f))); 834 835 } -
Singular/LIB/realrad.lib
r361b493 rc60d60 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: realrad.lib,v 1. 6 2008-02-22 14:12:29Singular Exp $";2 version="$Id: realrad.lib,v 1.7 2008-12-12 11:26:34 Singular Exp $"; 3 3 category="real algebra"; 4 4 info=" … … 1142 1142 example 1143 1143 { "EXAMPLE:"; echo = 2; 1144 list L1=" Nur","ein","Beispiel";1145 permuta ion(L1);1144 list L1="Just","an","example"; 1145 permutation(L1); 1146 1146 list L2=1,2,3,4; 1147 permuta ion(L2);1147 permutation(L2); 1148 1148 } 1149 1149 static proc simplify_gen(poly f)
Note: See TracChangeset
for help on using the changeset viewer.