Changeset 40e7ab in git for Singular/LIB/ring.lib
- Timestamp:
- May 21, 2014, 1:24:48 PM (10 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- c9f357778ee9f8d227771940ccf22290fb865982fff643cc11aac90dbe5f19791aac378c1eef37bb
- Parents:
- 18037b5d33961444969fa5886eb3b871445e3ede
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/ring.lib
r18037b r40e7ab 4 4 info=" 5 5 LIBRARY: ring.lib Manipulating Rings and Maps 6 AUTHORS: Singular team 6 7 7 8 PROCEDURES: … … 28 29 hasGlobalOrdering(rng) global versus mixed/local monomial ordering 29 30 hasMixedOrdering() mixed versus global/local ordering 31 hasFieldCoefficient(rng) coefficients are a field 32 isQuotientRing(rng) ring is a qotient ring 30 33 isSubModule(I,J) check if I is in J as submodule 31 34 "; … … 989 992 return (size(rl)==4); 990 993 } 994 example 995 { 996 ring r=0,(x,y,z),dp; 997 hasCommutativeVars(r); 998 } 991 999 992 1000 proc hasNumericCoeffs(rng) … … 1009 1017 else 1010 1018 { return(size(reduce(I,groebner(J),1)==0)); } 1019 } 1020 example 1021 { 1022 ring r=0,x,dp; 1023 ideal I1=x2; 1024 ideal I2=x3; 1025 isSubModule(I1,I2); 1026 isSubModule(I2,I1); 1011 1027 } 1012 1028
Note: See TracChangeset
for help on using the changeset viewer.