Changeset 9fcd0c in git


Ignore:
Timestamp:
Jul 20, 2006, 5:35:51 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7df1eb24fe7d630917b0c962ecb1138182fa10e0
Parents:
f11ebbbd9cb2500775acb3098085c5fffe4b4110
Message:
*hannes: Santiagos changes


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ring.lib

    rf11ebbb r9fcd0c  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: ring.lib,v 1.26 2005-05-18 18:07:51 levandov Exp $";
     2version="$Id: ring.lib,v 1.27 2006-07-20 15:35:51 Singular Exp $";
    33category="General purpose";
    44info="
     
    258258
    259259proc extendring (int n, string va, string o, list #)
    260 "USAGE:   extendring(n,va,o[iv,i,r]);  va,o=strings, n,i=integers, r=ring,
     260"USAGE:   extendring(n,va,o[,iv,i,r]);  va,o=strings, n,i=integers, r=ring,
    261261          iv=intvec of positive integers or iv=0
    262262RETURN:  ring R, which extends the ring r by adding n new variables in front
     
    292292         This proc uses 'execute' or calls a procedure using 'execute'.
    293293         If you use it in your own proc, it may be advisable to let the local
    294          names of your proc start with a @ (see the file HelpForProc)
     294         names of your proc start with a @
    295295EXAMPLE: example extendring; shows an example
    296296"
     
    418418CREATE:  fetch all objects of ring R (of type poly/ideal/vector/module/number/
    419419         matrix) into the basering.
    420          If no 3rd argument is present, the names are the same as in R. If,
    421          say, f is a poly in R and the 3rd argument is the string \"R\", then f
     420         If no 2nd argument is present, the names are the same as in R. If,
     421         say, f is a poly in R and the 2nd argument is the string \"R\", then f
    422422         is maped to f_R etc.
    423423RETURN:  no return value
    424424NOTE:    As fetch, this procedure maps the 1st, 2nd, ... variable of R to the
    425425         1st, 2nd, ... variable of the basering.
    426          The 3rd argument is useful in order to avoid conflicts of names, the
     426         The 2nd argument is useful in order to avoid conflicts of names, the
    427427         empty string is allowed
    428428CAUTION: fetchall does not work inside a procedure.
    429429         It does not work if R contains a map.
     430SEE ALSO: imapall
    430431EXAMPLE: example fetchall; shows an example
    431432"
     
    463464CREATE:  map all objects of ring R (of type poly/ideal/vector/module/number/
    464465         matrix) into the basering, by applying imap to all objects of R.
    465          If no 3rd argument is present, the names are the same as in R. If,
     466         If no 2nd argument is present, the names are the same as in R. If,
    466467         say, f is a poly in R and the 3rd argument is the string \"R\", then f
    467468         is maped to f_R etc.
     
    469470NOTE:    As imap, this procedure maps the variables of R to the variables with
    470471         the same name in the basering, the other variables are maped to 0.
    471          The 3rd argument is useful in order to avoid conflicts of names, the
     472         The 2nd argument is useful in order to avoid conflicts of names, the
    472473         empty string is allowed
    473474CAUTION: imapall does not work inside a procedure
    474475         It does not work if R contains a map
     476SEE ALSO: fetchall
    475477EXAMPLE: example imapall; shows an example
    476478"
     
    597599
    598600proc ringtensor (list #)
    599 "USAGE:   ringtensor(r1,r2,...); s=string, r1,r2,...=rings
     601"USAGE:   ringtensor(r1,r2,...); r1,r2,...=rings
    600602RETURN:  ring R whose variables are the variables from all rings r1,r2,...
    601603         and whose monomial ordering is the block (product) ordering of the
     
    759761///////////////////////////////////////////////////////////////////////////////
    760762proc preimageLoc(string R_name,string phi_name,string Q_name )
    761 "SYNTAX: @code{preimageLoc (} ring_name, map_name, ideal_name  @code{)}
     763"USAGE: preimageLoc ( ring_name, map_name, ideal_name );
    762764        all input parameters of type string
    763 TYPE:    ideal
     765RETURN:  ideal
    764766PURPOSE: computes the preimage of an ideal under a given map for non-global
    765767         orderings.
Note: See TracChangeset for help on using the changeset viewer.