aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/rdeef.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/rdeef.spad.pamphlet')
-rw-r--r--src/algebra/rdeef.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/rdeef.spad.pamphlet b/src/algebra/rdeef.spad.pamphlet
index 6e141ea0..787393b1 100644
--- a/src/algebra/rdeef.spad.pamphlet
+++ b/src/algebra/rdeef.spad.pamphlet
@@ -25,7 +25,6 @@ IntegrationTools(R:OrderedSet, F:FunctionSpace R): Exp == Impl where
IR ==> IntegrationResult F
ANS ==> Record(special:F, integrand:F)
U ==> Union(ANS, "failed")
- ALGOP ==> "%alg"
Exp ==> with
varselect: (List K, SE) -> List K
@@ -57,6 +56,7 @@ IntegrationTools(R:OrderedSet, F:FunctionSpace R): Exp == Impl where
++ on any remaining unintegrable part.
Impl ==> add
+ macro ALGOP == '%alg
better?: (K, K) -> Boolean
union(l1, l2) == setUnion(l1, l2)
@@ -179,7 +179,6 @@ ElementaryRischDE(R, F): Exports == Implementation where
UEX ==> Union(Record(ratpart:F, coeff:F), "failed")
PSOL==> Record(ans:F, right:F, sol?:Boolean)
FAIL==> error("Function not supported by Risch d.e.")
- ALGOP ==> "%alg"
Exports ==> with
rischDE: (Z, F, F, SE, (F, LF) -> U, (F, F) -> UEX) -> PSOL
@@ -191,6 +190,7 @@ ElementaryRischDE(R, F): Exports == Implementation where
++ ext is an extended integration function.
Implementation ==> add
+ macro ALGOP == '%alg
import IntegrationTools(R, F)
import TranscendentalRischDE(F, UP)
import TranscendentalIntegration(F, UP)