Changeset 40e7ab in git


Ignore:
Timestamp:
May 21, 2014, 1:24:48 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
c9f357778ee9f8d227771940ccf22290fb865982fff643cc11aac90dbe5f19791aac378c1eef37bb
Parents:
18037b5d33961444969fa5886eb3b871445e3ede
Message:
ring.lib: header, examples
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ring.lib

    r18037b r40e7ab  
    44info="
    55LIBRARY:  ring.lib      Manipulating Rings and Maps
     6AUTHORS: Singular team
    67
    78PROCEDURES:
     
    2829 hasGlobalOrdering(rng)   global versus mixed/local monomial ordering
    2930 hasMixedOrdering()       mixed versus global/local ordering
     31 hasFieldCoefficient(rng) coefficients are a field
     32 isQuotientRing(rng)      ring is a qotient ring
    3033 isSubModule(I,J)         check if I is in J as submodule
    3134";
     
    989992  return (size(rl)==4);
    990993}
     994example
     995{
     996 ring r=0,(x,y,z),dp;
     997 hasCommutativeVars(r);
     998}
    991999
    9921000proc hasNumericCoeffs(rng)
     
    10091017  else
    10101018  { return(size(reduce(I,groebner(J),1)==0)); }
     1019}
     1020example
     1021{
     1022  ring r=0,x,dp;
     1023  ideal I1=x2;
     1024  ideal I2=x3;
     1025  isSubModule(I1,I2);
     1026  isSubModule(I2,I1);
    10111027}
    10121028
Note: See TracChangeset for help on using the changeset viewer.