aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-20 06:19:14 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-20 06:19:14 +0000
commit1594919e986ae03af2ac70074d90cf7d70ee0e29 (patch)
treeede18fd5fd67f9c0aedbce30fc3200d69b9e6a37 /src
parentad4542e0a85404bc38411060e5994ed11313a33a (diff)
downloadopen-axiom-1594919e986ae03af2ac70074d90cf7d70ee0e29.tar.gz
more cleanup
Diffstat (limited to 'src')
-rw-r--r--src/interp/functor.boot25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/interp/functor.boot b/src/interp/functor.boot
index 730de440..8b21eba9 100644
--- a/src/interp/functor.boot
+++ b/src/interp/functor.boot
@@ -196,34 +196,31 @@ CategoriesFromGDC x ==
compCategories u ==
atom u => u
- cons? first u =>
- error ['"compCategories: need an atom in operator position", first u]
- first u is "Record" =>
+ cons? u.op =>
+ error ['"compCategories: need an atom in operator position", u.op]
+ u.op in '(Record Union Mapping) =>
-- There is no modemap property for these guys so do it by hand.
- [first u, :[[":", a.1, compCategories1(a.2,$SetCategory)] for a in rest u]]
- first u in '(Union Mapping) =>
- -- There is no modemap property for these guys so do it by hand.
- [first u, :[compCategories1(a,$SetCategory) for a in rest u]]
+ [u.op, :[compCategories1(a,$SetCategory) for a in u.args]]
u is ['SubDomain,D,.] => compCategories D
- v:=get(first u,'modemap,$e)
+ v := get(u.op,'modemap,$e)
atom v =>
- error ['"compCategories: could not get proper modemap for operator",first u]
+ error ['"compCategories: could not get proper modemap for operator",u.op]
if rest v then
sayBrightly ['"compCategories: ", '"%b", '"Warning", '"%d",
'"ignoring unexpected stuff at end of modemap"]
pp rest v
-- the next line "fixes" a bad modemap which sometimes appears ....
--
- if rest v and null CAAAR v then v:=rest v
- v:= CDDAAR v
- v:=resolvePatternVars(v, rest u) -- replaces #n forms
+ if rest v and null CAAAR v then
+ v := rest v
+ v := resolvePatternVars(first(v).mmSource, u.args) -- replaces #n forms
-- select the modemap part of the first entry, and skip result etc.
- u:=[first u,:[compCategories1(a,b) for a in rest u for b in v]]
- u
+ [u.op,:[compCategories1(a,b) for a in u.args for b in v]]
compCategories1(u,v) ==
-- v is the mode of u
atom u => u
+ u is [":",x,t] => [u.op,x,compCategories1(t,v)]
isCategoryForm(v,$e) => compCategories u
[c,:.] := comp(macroExpand(u,$e),v,$e) => c
error 'compCategories1