aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/fspace.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-06-11 21:51:23 +0000
committerdos-reis <gdr@axiomatics.org>2009-06-11 21:51:23 +0000
commit7bd82b57975bbc1ff5b87fed0739815c620ecdcc (patch)
tree4cf4d2b4af144e87a86cc1ac2f85a5f4148cb8fb /src/algebra/fspace.spad.pamphlet
parentfb75980589a0611aee3b8e5e25408725a5c5a531 (diff)
downloadopen-axiom-7bd82b57975bbc1ff5b87fed0739815c620ecdcc.tar.gz
* algebra/: Remove quotes from operator namaes in signatures.
Diffstat (limited to 'src/algebra/fspace.spad.pamphlet')
-rw-r--r--src/algebra/fspace.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/fspace.spad.pamphlet b/src/algebra/fspace.spad.pamphlet
index 1768016e..7d2a4eee 100644
--- a/src/algebra/fspace.spad.pamphlet
+++ b/src/algebra/fspace.spad.pamphlet
@@ -430,7 +430,7 @@ FunctionSpace(R: SetCategory): Category == Definition where
if R has SemiGroup then
Monoid
-- the following line is necessary because of a compiler bug
- "**" : (%, N) -> %
+ ** : (%, N) -> %
++ x**n returns x * x * x * ... * x (n times).
isTimes: % -> Union(List %, "failed")
++ isTimes(p) returns \spad{[a1,...,an]}
@@ -501,7 +501,7 @@ FunctionSpace(R: SetCategory): Category == Definition where
++ polynomial in the kernels over R.
denominator : % -> %
++ denominator(f) returns the denominator of \spad{f} converted to %.
- "/" : (MP, MP) -> %
+ / : (MP, MP) -> %
++ p1/p2 returns the quotient of p1 and p2 as an element of %.
coerce : Q -> %
++ coerce(q) returns q as an element of %.