aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/op.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-05-17 20:12:13 +0000
committerdos-reis <gdr@axiomatics.org>2009-05-17 20:12:13 +0000
commit7f0313f8c6cce367c51cf5bb6bc8c073a466191b (patch)
tree7331d74c8befae2c6160931ba8f0c8e62cf37bba /src/algebra/op.spad.pamphlet
parent3251e62a23c39a33116e57bc211ef9d25999405b (diff)
downloadopen-axiom-7f0313f8c6cce367c51cf5bb6bc8c073a466191b.tar.gz
* algebra/op.spad.pamphlet: Use symbol literals for property names.
Diffstat (limited to 'src/algebra/op.spad.pamphlet')
-rw-r--r--src/algebra/op.spad.pamphlet30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/algebra/op.spad.pamphlet b/src/algebra/op.spad.pamphlet
index 3b05e876..dc1f4220 100644
--- a/src/algebra/op.spad.pamphlet
+++ b/src/algebra/op.spad.pamphlet
@@ -25,12 +25,6 @@ BasicOperator(): Exports == Implementation where
P ==> AssociationList(String, None)
L ==> List Record(key:String, entry:None)
SEX ==> InputForm
--- some internal properties
- LESS? ==> "%less?"
- EQUAL? ==> "%equal?"
- WEIGHT ==> "%weight"
- DISPLAY ==> "%display"
- SEXPR ==> "%input"
Exports == Join(OrderedSet, OperatorCategory Symbol) with
properties: $ -> P
@@ -117,6 +111,12 @@ BasicOperator(): Exports == Implementation where
++ Argument op is modified "in place", i.e. no copy is made.
Implementation ==> add
+ -- some internal properties
+ macro LESS? == '%less?
+ macro EQUAL? == '%equal?
+ macro WEIGHT == '%weight
+ macro DISPLAY == '%display
+ macro SEXPR == '%input
import Arity
-- if narg < 0 then the operator ahs variable arity.
Rep == Record(opname:Symbol, narg: Arity, props:P)
@@ -159,12 +159,12 @@ BasicOperator(): Exports == Implementation where
display(op:$, f:List O -> O) == setProperty(op, DISPLAY, f pretend None)
display op ==
- (u := property(op, DISPLAY)) case "failed" => "failed"
- (u::None) pretend (List O -> O)
+ (u := property(op, DISPLAY)) case nothing => "failed"
+ (u@None) pretend (List O -> O)
input op ==
- (u := property(op, SEXPR)) case "failed" => "failed"
- (u::None) pretend (List SEX -> SEX)
+ (u := property(op, SEXPR)) case nothing => "failed"
+ (u@None) pretend (List SEX -> SEX)
arity op == rep(op).narg
@@ -179,14 +179,14 @@ BasicOperator(): Exports == Implementation where
rep(op1).narg ~= rep(op2).narg => false
brace(keys properties op1)~=$Set(String) brace(keys properties op2) => false
(func := property(op1, EQUAL?)) case None =>
- ((func::None) pretend (($, $) -> Boolean)) (op1, op2)
+ ((func@None) pretend (($, $) -> Boolean)) (op1, op2)
true
-- property WEIGHT allows one to change the ordering around
-- by default, every operator has weigth 1
weight op ==
- (w := property(op, WEIGHT)) case "failed" => 1
- (w::None) pretend NonNegativeInteger
+ (w := property(op, WEIGHT)) case nothing => 1
+ (w@None) pretend NonNegativeInteger
-- property LESS? contains a function f: (BOP, BOP) -> Boolean
-- such that f(o1, o2) is true iff o1 < o2
@@ -203,9 +203,9 @@ BasicOperator(): Exports == Implementation where
n1 ~= (n2 := #(d2 := difference(k2, k1))) => n1 < n2
inspect(d1) < inspect(d2)
(func := property(op1, LESS?)) case None =>
- ((func::None) pretend (($, $) -> Boolean)) (op1, op2)
+ ((func@None) pretend (($, $) -> Boolean)) (op1, op2)
(func := property(op1, EQUAL?)) case None =>
- not(((func::None) pretend (($, $) -> Boolean)) (op1, op2))
+ not(((func@None) pretend (($, $) -> Boolean)) (op1, op2))
false
@