aboutsummaryrefslogtreecommitdiff
path: root/src/algebra
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-06-29 23:09:48 +0000
committerdos-reis <gdr@axiomatics.org>2010-06-29 23:09:48 +0000
commitd22c1854ea64e995bb1efcaa0b1d3da0b411bb60 (patch)
tree92d880ff5f0d1fcccb5edd8f75d124493034ea12 /src/algebra
parent3f4d38826d28da40a6509a9afc37b8cbaebd080e (diff)
downloadopen-axiom-d22c1854ea64e995bb1efcaa0b1d3da0b411bb60.tar.gz
Various cleanups
Diffstat (limited to 'src/algebra')
-rw-r--r--src/algebra/catdef.spad.pamphlet3
-rw-r--r--src/algebra/indexedp.spad.pamphlet121
2 files changed, 54 insertions, 70 deletions
diff --git a/src/algebra/catdef.spad.pamphlet b/src/algebra/catdef.spad.pamphlet
index 76b0f796..104c4f10 100644
--- a/src/algebra/catdef.spad.pamphlet
+++ b/src/algebra/catdef.spad.pamphlet
@@ -296,7 +296,8 @@ OrderedType(): Category == BasicType with
)abbrev domain ORDSTRCT OrderedStructure
OrderedStructure(T: Type,f: (T,T) -> Boolean): Public == Private where
Public == Join(OrderedType,HomotopicTo T)
- Private == T add
+ Private == add
+ Rep == T
coerce(x: %): T == rep x
coerce(y: T): % == per y
x < y == f(rep x,rep y)
diff --git a/src/algebra/indexedp.spad.pamphlet b/src/algebra/indexedp.spad.pamphlet
index 59b76a81..43d67cf4 100644
--- a/src/algebra/indexedp.spad.pamphlet
+++ b/src/algebra/indexedp.spad.pamphlet
@@ -65,10 +65,7 @@ IndexedDirectProductCategory(A:SetCategory,S:OrderedSet): Category ==
IndexedDirectProductObject(A,S): Public == Private where
A: SetCategory
S: OrderedSet
- Public == IndexedDirectProductCategory(A,S) with
- indexedDirectProductObject: List Pair(S,A) -> %
- ++ \spad{indexedDirectProductObject l} constructs an indexed
- ++ direct product object with support-value pairs given in \spad{l}.
+ Public == IndexedDirectProductCategory(A,S)
Private == add
Term == Pair(S,A)
Rep == List Term
@@ -108,8 +105,6 @@ IndexedDirectProductObject(A,S): Public == Private where
termIndex first rep x
terms x == rep x
- indexedDirectProductObject l ==
- per sort((x,y) +-> termIndex x > termIndex y, l)
@
\section{domain IDPAM IndexedDirectProductAbelianMonoid}
@@ -119,10 +114,7 @@ IndexedDirectProductObject(A,S): Public == Private where
++ generators indexed by the ordered set S. All items have finite support.
++ Only non-zero terms are stored.
IndexedDirectProductAbelianMonoid(A:AbelianMonoid,S:OrderedSet):
- Join(AbelianMonoid,IndexedDirectProductCategory(A,S)) with
- construct: List Pair(A,S) -> %
- ++ \spad{l} returns an IndexedDirectProductAbelianMonoid object
- ++ with support and value as specified in the list of pairs \spad{l}.
+ Join(AbelianMonoid,IndexedDirectProductCategory(A,S))
== IndexedDirectProductObject(A,S) add
--representations
Term == Pair(S,A)
@@ -203,10 +195,6 @@ IndexedDirectProductAbelianMonoid(A:AbelianMonoid,S:OrderedSet):
pair2Term(t: Pair(A,S)): Term ==
[second t, first t]
- construct l ==
- per indexedDirectProductObject
- [pair2Term t for t in l | not zero? first t]
-
@
\section{domain IDPOAM IndexedDirectProductOrderedAbelianMonoid}
<<domain IDPOAM IndexedDirectProductOrderedAbelianMonoid>>=
@@ -279,66 +267,61 @@ IndexedDirectProductOrderedAbelianMonoidSup(A:OrderedAbelianMonoidSup,S:OrderedS
++ generators indexed by the ordered set S.
++ All items have finite support: only non-zero terms are stored.
IndexedDirectProductAbelianGroup(A:AbelianGroup,S:OrderedSet):
- Join(AbelianGroup,IndexedDirectProductCategory(A,S))
+ Join(AbelianGroup,IndexedDirectProductCategory(A,S)) with
+ construct: List Pair(A,S) -> %
+ ++ \spad{construct l} returns an object that is a linear
+ ++ combination with support in \spad{A} and coefficients
+ ++ in \spad{A}.
== IndexedDirectProductAbelianMonoid(A,S) add
--representations
- Term:= Record(k:S,c:A)
- Rep:= List Term
- x,y: %
- r: A
- n: Integer
- f: A -> A
- s: S
- -x == [[u.k,-u.c] for u in x]
- n * x ==
- n = 0 => 0
- n = 1 => x
- [[u.k,a] for u in x | (a:=n*u.c) ~= 0$A]
+ Term == Pair(S,A)
+ termIndex(t: Term): S == first t
+ termValue(t: Term): A == second t
- qsetrest!: (Rep, Rep) -> Rep
- qsetrest!(l: Rep, e: Rep): Rep == RPLACD(l, e)$Lisp
+ -x == [[termIndex u,-termValue u] for u in terms x] pretend %
+ n:Integer * x:% ==
+ n = 0 => 0
+ n = 1 => x
+ [[termIndex u,a] for u in terms x
+ | not zero?(a := n * termValue u)] pretend %
- x - y ==
- null x => -y
- null y => x
- endcell: Rep := empty()
- res: Rep := empty()
- while not empty? x and not empty? y repeat
- newcell := empty()
- if x.first.k = y.first.k then
- r:= x.first.c - y.first.c
- if not zero? r then
- newcell := cons([x.first.k, r], empty())
- x := rest x
- y := rest y
- else if x.first.k > y.first.k then
- newcell := cons(x.first, empty())
- x := rest x
- else
- newcell := cons([y.first.k,-y.first.c], empty())
- y := rest y
- if not empty? newcell then
- if not empty? endcell then
- qsetrest!(endcell, newcell)
- endcell := newcell
- else
- res := newcell;
- endcell := res
- end :=
- empty? x => - y
- x
- if empty? res then res := end
- else qsetrest!(endcell, end)
- res
+ qsetrest!: (List Term, List Term) -> List Term
+ qsetrest!(l, e) == RPLACD(l, e)$Lisp
--- x - y ==
--- empty? x => - y
--- empty? y => x
--- y.first.k > x.first.k => cons([y.first.k,-y.first.c],(x - y.rest))
--- x.first.k > y.first.k => cons(x.first,(x.rest - y))
--- r:= x.first.c - y.first.c
--- r = 0 => x.rest - y.rest
--- cons([x.first.k,r],(x.rest - y.rest))
+ x - y ==
+ x' := terms x
+ y' := terms y
+ null x' => -y
+ null y' => x
+ endcell: List Term := nil
+ res: List Term := nil
+ while not empty? x' and not empty? y' repeat
+ newcell: List Term := nil
+ if termIndex x'.first = termIndex y'.first then
+ r := termValue x'.first - termValue y'.first
+ if not zero? r then
+ newcell := cons([termIndex x'.first, r], empty())
+ x' := rest x'
+ y' := rest y'
+ else if termIndex x'.first > termIndex y'.first then
+ newcell := cons(x'.first, empty())
+ x' := rest x'
+ else
+ newcell := cons([termIndex y'.first,-termValue y'.first], empty())
+ y' := rest y'
+ if not empty? newcell then
+ if not empty? endcell then
+ qsetrest!(endcell, newcell)
+ endcell := newcell
+ else
+ res := newcell;
+ endcell := res
+ end :=
+ empty? x' => terms(-(y' pretend %))
+ x'
+ if empty? res then res := end
+ else qsetrest!(endcell, end)
+ res pretend %
@
\section{License}