aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap/SINT.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/strap/SINT.lsp')
-rw-r--r--src/algebra/strap/SINT.lsp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/algebra/strap/SINT.lsp b/src/algebra/strap/SINT.lsp
index d37ff34e..d5afc6c2 100644
--- a/src/algebra/strap/SINT.lsp
+++ b/src/algebra/strap/SINT.lsp
@@ -118,12 +118,14 @@
(DECLAIM (FTYPE (FUNCTION (|%Short| |%Short| |%Shell|) |%Boolean|)
|SINT;<=;2$B;28|))
-(PUT '|SINT;<=;2$B;28| '|SPADreplace| '|%ile|)
+(PUT '|SINT;<=;2$B;28| '|SPADreplace|
+ '(XLAM (|x| |y|) (|%not| (|%ilt| |y| |x|))))
(DECLAIM (FTYPE (FUNCTION (|%Short| |%Short| |%Shell|) |%Boolean|)
|SINT;>=;2$B;29|))
-(PUT '|SINT;>=;2$B;29| '|SPADreplace| '|%ige|)
+(PUT '|SINT;>=;2$B;29| '|SPADreplace|
+ '(XLAM (|x| |y|) (|%not| (|%ilt| |x| |y|))))
(DECLAIM (FTYPE (FUNCTION (|%Short| |%Shell|) |%Short|)
|SINT;inc;2$;30|))
@@ -389,9 +391,13 @@
(DECLARE (IGNORE $))
(QSGREATERP |x| |y|))
-(DEFUN |SINT;<=;2$B;28| (|x| |y| $) (DECLARE (IGNORE $)) (<= |x| |y|))
+(DEFUN |SINT;<=;2$B;28| (|x| |y| $)
+ (DECLARE (IGNORE $))
+ (NOT (< |y| |x|)))
-(DEFUN |SINT;>=;2$B;29| (|x| |y| $) (DECLARE (IGNORE $)) (>= |x| |y|))
+(DEFUN |SINT;>=;2$B;29| (|x| |y| $)
+ (DECLARE (IGNORE $))
+ (NOT (< |x| |y|)))
(DEFUN |SINT;inc;2$;30| (|x| $) (DECLARE (IGNORE $)) (QSADD1 |x|))