blob: 5a7d725eb836236c9c98928aa5ca0edf3b250833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
(/VERSIONCHECK 2)
(DECLAIM (FTYPE (FUNCTION (|%Thing| |%Shell|) |%Boolean|)
|ORDRING-;positive?;SB;1|))
(DECLAIM (FTYPE (FUNCTION (|%Thing| |%Shell|) |%Boolean|)
|ORDRING-;negative?;SB;2|))
(DECLAIM (FTYPE (FUNCTION (|%Thing| |%Shell|) |%Integer|)
|ORDRING-;sign;SI;3|))
(DECLAIM (FTYPE (FUNCTION (|%Thing| |%Shell|) |%Thing|)
|ORDRING-;abs;2S;4|))
(DEFUN |ORDRING-;positive?;SB;1| (|x| $)
(SPADCALL (|spadConstant| $ 7) |x| (|getShellEntry| $ 9)))
(DEFUN |ORDRING-;negative?;SB;2| (|x| $)
(SPADCALL |x| (|spadConstant| $ 7) (|getShellEntry| $ 9)))
(DEFUN |ORDRING-;sign;SI;3| (|x| $)
(COND
((SPADCALL |x| (|getShellEntry| $ 12)) 1)
((SPADCALL |x| (|getShellEntry| $ 15)) -1)
((SPADCALL |x| (|getShellEntry| $ 18)) 0)
('T (|error| "x satisfies neither positive?, negative? or zero?"))))
(DEFUN |ORDRING-;abs;2S;4| (|x| $)
(COND
((SPADCALL |x| (|getShellEntry| $ 12)) |x|)
((SPADCALL |x| (|getShellEntry| $ 15))
(SPADCALL |x| (|getShellEntry| $ 21)))
((SPADCALL |x| (|getShellEntry| $ 18)) (|spadConstant| $ 7))
('T (|error| "x satisfies neither positive?, negative? or zero?"))))
(DEFUN |OrderedRing&| (|#1|)
(PROG (|dv$1| |dv$| $ |pv$|)
(RETURN
(PROGN
(LETT |dv$1| (|devaluate| |#1|) . #0=(|OrderedRing&|))
(LETT |dv$| (LIST '|OrderedRing&| |dv$1|) . #0#)
(LETT $ (|newShell| 23) . #0#)
(|setShellEntry| $ 0 |dv$|)
(|setShellEntry| $ 3
(LETT |pv$| (|buildPredVector| 0 0 NIL) . #0#))
(|stuffDomainSlots| $)
(|setShellEntry| $ 6 |#1|)
$))))
(MAKEPROP '|OrderedRing&| '|infovec|
(LIST '#(NIL NIL NIL NIL NIL NIL (|local| |#1|) (0 . |Zero|)
(|Boolean|) (4 . <) |ORDRING-;positive?;SB;1|
|ORDRING-;negative?;SB;2| (10 . |positive?|) (|Integer|)
(15 . |One|) (19 . |negative?|) (24 . |One|) (28 . -)
(33 . |zero?|) (38 . |Zero|) |ORDRING-;sign;SI;3| (42 . -)
|ORDRING-;abs;2S;4|)
'#(|sign| 47 |positive?| 52 |negative?| 57 |abs| 62) 'NIL
(CONS (|makeByteWordVec2| 1 'NIL)
(CONS '#()
(CONS '#()
(|makeByteWordVec2| 22
'(0 6 0 7 2 6 8 0 0 9 1 6 8 0 12 0 13 0
14 1 6 8 0 15 0 6 0 16 1 13 0 0 17 1
6 8 0 18 0 13 0 19 1 6 0 0 21 1 0 13
0 20 1 0 8 0 10 1 0 8 0 11 1 0 0 0
22)))))
'|lookupComplete|))
|