aboutsummaryrefslogtreecommitdiff
path: root/src/algebra
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-06-14 04:25:41 +0000
committerdos-reis <gdr@axiomatics.org>2010-06-14 04:25:41 +0000
commit5f7a5c1a81c50807bf1315260f94108dd9a5ac2e (patch)
tree6b485c54e2fa2b6c71ec68d89ad143087625d342 /src/algebra
parent335db800c7cbaff88eda34d83e23ad808ea42fb8 (diff)
downloadopen-axiom-5f7a5c1a81c50807bf1315260f94108dd9a5ac2e.tar.gz
* Partially revert previous change.
Diffstat (limited to 'src/algebra')
-rw-r--r--src/algebra/catdef.spad.pamphlet4
-rw-r--r--src/algebra/dpolcat.spad.pamphlet4
-rw-r--r--src/algebra/lodop.spad.pamphlet2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/algebra/catdef.spad.pamphlet b/src/algebra/catdef.spad.pamphlet
index 1ea30684..4c6317f3 100644
--- a/src/algebra/catdef.spad.pamphlet
+++ b/src/algebra/catdef.spad.pamphlet
@@ -446,7 +446,7 @@ DifferentialExtension(R:Ring): Category == Ring with
D: (%, R -> R, NonNegativeInteger) -> %
++ D(x, deriv, n) differentiate x n times
++ using a derivation which extends deriv on R.
- if R has DifferentialDomain R then DifferentialRing
+ if R has DifferentialRing then DifferentialRing
if R has PartialDifferentialRing(Symbol) then
PartialDifferentialRing(Symbol)
add
@@ -457,7 +457,7 @@ DifferentialExtension(R:Ring): Category == Ring with
D(x:%, derivation: R -> R, n:NonNegativeInteger) ==
differentiate(x, derivation, n)
- if R has DifferentialDomain R then
+ if R has DifferentialRing then
differentiate x == differentiate(x, differentiate$R)
if R has PartialDifferentialRing Symbol then
diff --git a/src/algebra/dpolcat.spad.pamphlet b/src/algebra/dpolcat.spad.pamphlet
index 65533281..c5da0b47 100644
--- a/src/algebra/dpolcat.spad.pamphlet
+++ b/src/algebra/dpolcat.spad.pamphlet
@@ -300,7 +300,7 @@ DifferentialPolynomialCategory(R:Ring,S:OrderedSet,
++ separant(p) returns the
++ partial derivative of the differential polynomial p
++ with respect to its leader.
- if R has DifferentialDomain R then
+ if R has DifferentialRing then
InnerEvalable(S, R)
InnerEvalable(S, $)
Evalable $
@@ -394,7 +394,7 @@ DifferentialPolynomialCategory(R:Ring,S:OrderedSet,
differentialVariables p ==
removeDuplicates [variable v for v in variables p]
- if R has DifferentialDomain R then
+ if R has DifferentialRing then
makeVariable p == differentiate(p, #1)
diff --git a/src/algebra/lodop.spad.pamphlet b/src/algebra/lodop.spad.pamphlet
index d4aba322..3ebad1d2 100644
--- a/src/algebra/lodop.spad.pamphlet
+++ b/src/algebra/lodop.spad.pamphlet
@@ -86,7 +86,7 @@ OppositeMonogenicLinearOperator(P, R): OPRcat == OPRdef where
R: Ring
OPRcat == MonogenicLinearOperator(R) with
- if P has DifferentialDomain P then DifferentialRing
+ if P has DifferentialRing then DifferentialRing
op: P -> $ ++ op(p) creates a value in $ equal to p in P.
po: $ -> P ++ po(q) creates a value in P equal to q in $.