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/sttf.spad.pamphlet | |
parent | fb75980589a0611aee3b8e5e25408725a5c5a531 (diff) | |
download | open-axiom-7bd82b57975bbc1ff5b87fed0739815c620ecdcc.tar.gz |
* algebra/: Remove quotes from operator namaes in signatures.
Diffstat (limited to 'src/algebra/sttf.spad.pamphlet')
-rw-r--r-- | src/algebra/sttf.spad.pamphlet | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/sttf.spad.pamphlet b/src/algebra/sttf.spad.pamphlet index 1cbc7038..b96dc31f 100644 --- a/src/algebra/sttf.spad.pamphlet +++ b/src/algebra/sttf.spad.pamphlet @@ -42,7 +42,7 @@ StreamTranscendentalFunctions(Coef): Exports == Implementation where ++ exp(st) computes the exponential of a power series st. log : ST -> ST ++ log(st) computes the log of a power series. - "**" : (ST,ST) -> ST + ** : (ST,ST) -> ST ++ st1 ** st2 computes the power of a power series st1 by another ++ power series st2. @@ -490,7 +490,7 @@ StreamTranscendentalFunctionsNonCommutative(Coef): _ ++ exp(st) computes the exponential of a power series st. log : ST -> ST ++ log(st) computes the log of a power series. - "**" : (ST,ST) -> ST + ** : (ST,ST) -> ST ++ st1 ** st2 computes the power of a power series st1 by another ++ power series st2. |