diff options
author | dos-reis <gdr@axiomatics.org> | 2009-06-11 21:51:23 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2009-06-11 21:51:23 +0000 |
commit | 7bd82b57975bbc1ff5b87fed0739815c620ecdcc (patch) | |
tree | 4cf4d2b4af144e87a86cc1ac2f85a5f4148cb8fb /src/algebra/ideal.spad.pamphlet | |
parent | fb75980589a0611aee3b8e5e25408725a5c5a531 (diff) | |
download | open-axiom-7bd82b57975bbc1ff5b87fed0739815c620ecdcc.tar.gz |
* algebra/: Remove quotes from operator namaes in signatures.
Diffstat (limited to 'src/algebra/ideal.spad.pamphlet')
-rw-r--r-- | src/algebra/ideal.spad.pamphlet | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/ideal.spad.pamphlet b/src/algebra/ideal.spad.pamphlet index fe5fb90a..565beacc 100644 --- a/src/algebra/ideal.spad.pamphlet +++ b/src/algebra/ideal.spad.pamphlet @@ -50,11 +50,11 @@ PolynomialIdeals(F,Expon,VarSet,DPoly) : C == T C == SetCategory with - "*" : (Ideal,Ideal) -> Ideal + * : (Ideal,Ideal) -> Ideal ++ I*J computes the product of the ideal I and J. - "**" : (Ideal,NNI) -> Ideal + ** : (Ideal,NNI) -> Ideal ++ I**n computes the nth power of the ideal I. - "+" : (Ideal,Ideal) -> Ideal + + : (Ideal,Ideal) -> Ideal ++ I+J computes the ideal generated by the union of I and J. one? : Ideal -> Boolean ++ one?(I) tests whether the ideal I is the unit ideal, |