* Added the rest of fl=? fl<? fl<=? fl>? fl>=?

This commit is contained in:
Abdulaziz Ghuloum 2007-06-13 11:53:52 +03:00
parent adb65c1b84
commit 88d8e198fc
3 changed files with 56 additions and 43 deletions

Binary file not shown.

View File

@ -100,7 +100,8 @@
(export + - * / zero? = < <= > >= add1 sub1 quotient remainder
positive? expt gcd lcm numerator denominator exact-integer-sqrt
quotient+remainder number->string string->number max
exact->inexact floor ceiling log fl<? fl+ fl-)
exact->inexact floor ceiling log fl=? fl<? fl<=? fl>?
fl>=? fl+ fl-)
(import
(ikarus system $fx)
(ikarus system $flonums)
@ -114,7 +115,7 @@
string->number expt gcd lcm numerator denominator
exact->inexact floor ceiling log
exact-integer-sqrt max
fl<? fl+ fl-))
fl=? fl<? fl<=? fl>? fl>=? fl+ fl-))
(define (fixnum->flonum x)
(foreign-call "ikrt_fixnum_to_flonum" x))
@ -1136,47 +1137,55 @@
(define-syntax $fl>=
(syntax-rules () [(_ x y) (foreign-call "ikrt_fl_less_or_equal" y x)]))
(define fl<?
(case-lambda
[(x y)
(if (flonum? x)
(if (flonum? y)
($fl< x y)
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x))]
[(x y z)
(if (flonum? x)
(if (flonum? y)
(if (flonum? z)
(and ($fl< x y) ($fl< y z))
(error 'fl<? "~s is not a flonum" z))
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x))]
[(x)
(or (flonum? x)
(error 'fl<? "~s is not a flonum" x))]
[(x y . rest)
(let ()
(define (loopf a ls)
(unless (flonum? a)
(error 'fl<? "~s is not a flonum" a))
(if (null? ls)
#f
(loopf (car ls) (cdr ls))))
(if (flonum? x)
(if (flonum? y)
(if ($fl< x y)
(let f ([x y] [y (car rest)] [ls (cdr rest)])
(if (flonum? y)
(if (null? ls)
($fl< x y)
(if ($fl< x y)
(f y (car ls) (cdr ls))
(loopf (car ls) (cdr ls))))
(error 'fl<? "~s is not a flonum" y)))
(loopf (car rest) (cdr rest)))
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x)))]))
(define-syntax define-flcmp
(syntax-rules ()
[(_ fl<? $fl<)
(define fl<?
(case-lambda
[(x y)
(if (flonum? x)
(if (flonum? y)
($fl< x y)
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x))]
[(x y z)
(if (flonum? x)
(if (flonum? y)
(if (flonum? z)
(and ($fl< x y) ($fl< y z))
(error 'fl<? "~s is not a flonum" z))
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x))]
[(x)
(or (flonum? x)
(error 'fl<? "~s is not a flonum" x))]
[(x y . rest)
(let ()
(define (loopf a ls)
(unless (flonum? a)
(error 'fl<? "~s is not a flonum" a))
(if (null? ls)
#f
(loopf (car ls) (cdr ls))))
(if (flonum? x)
(if (flonum? y)
(if ($fl< x y)
(let f ([x y] [y (car rest)] [ls (cdr rest)])
(if (flonum? y)
(if (null? ls)
($fl< x y)
(if ($fl< x y)
(f y (car ls) (cdr ls))
(loopf (car ls) (cdr ls))))
(error 'fl<? "~s is not a flonum" y)))
(loopf (car rest) (cdr rest)))
(error 'fl<? "~s is not a flonum" y))
(error 'fl<? "~s is not a flonum" x)))]))]))
(define-flcmp fl=? $fl=)
(define-flcmp fl<? $fl<)
(define-flcmp fl<=? $fl<=)
(define-flcmp fl>? $fl>)
(define-flcmp fl>=? $fl>=)
(define fl+
(case-lambda

View File

@ -367,7 +367,11 @@
[fxlogxor i]
[fxlogor i]
[fxlognot i]
[fl=? i rfl]
[fl<? i rfl]
[fl<=? i rfl]
[fl>? i rfl]
[fl>=? i rfl]
[fl+ i rfl]
[fl- i rfl]
[fixnum->string i]