Changeset 82716e in git for Singular/LIB/poly.lib


Ignore:
Timestamp:
May 14, 1998, 8:45:19 PM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
68e324ca946be87c2ab75edd4cc0fd161e1f6ead
Parents:
30c91fe3835d6ff4504cc9ddeeb5866465754c2a
Message:
*hannes: typos in the info-help-string


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/poly.lib

    r30c91f r82716e  
    1 // $Id: poly.lib,v 1.12 1998-05-05 11:55:33 krueger Exp $
     1// $Id: poly.lib,v 1.13 1998-05-14 18:45:11 Singular Exp $
    22//system("random",787422842);
    33//(GMG, last modified 22.06.96)
     
    55///////////////////////////////////////////////////////////////////////////////
    66
    7 version="$Id: poly.lib,v 1.12 1998-05-05 11:55:33 krueger Exp $";
     7version="$Id: poly.lib,v 1.13 1998-05-14 18:45:11 Singular Exp $";
    88info="
    99LIBRARY:  poly.lib      PROCEDURES FOR MANIPULATING POLYS, IDEALS, MODULES
    1010
    1111 cyclic(int);           ideal of cyclic n-roots
    12  katsura([i]);          katsura [i] ideal
     12 katsura([i]);          katsura [i] ideal
    1313 freerank(poly/...)     rank of coker(input) if coker is free else -1
    1414 is_homog(poly/...);    int, =1 resp. =0 if input is homogeneous resp. not
     
    5959
    6060proc katsura
    61 "USAGE: katsura([n]); n integer
     61"USAGE: katsura([n]); n integer
    6262RETURN: katsura(n) : n-th katsura ideal of newly created and set ring
    6363                     (32003, x(0..n), dp)
    64         katsura()  : katsura ideal of basering 
     64        katsura()  : katsura ideal of basering
    6565EXAMPLE: example katsura; shows examples
    6666"
     
    7575  int n = nvars(basering) -1;
    7676  poly p;
    77  
     77
    7878  p = -1;
    7979  for (i = -n; i <= n; i++)
     
    8282  }
    8383  s[1] = p;
    84  
     84
    8585  for (i = 0; i < n; i++)
    8686  {
     
    596596"USAGE:   lcm(i); i ideal
    597597RETURN:  poly = lcm(i[1],...,i[size(i)])
    598 NOTE:   
     598NOTE:
    599599EXAMPLE: example lcm; shows an example
    600600"
     
    656656{
    657657  return(leadcoef(f)/leadcoef(cleardenom(f)));
    658 } 
     658}
    659659example
    660660{ "EXAMPLE:"; echo = 2;
Note: See TracChangeset for help on using the changeset viewer.