;;; numbers.lisp ;; JSCL is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; ;; JSCL is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with JSCL. If not, see . ;;;; Various numeric functions and constants ;; TODO: Use MACROLET when it exists (defmacro define-variadic-op (operator initial-value) (let ((init-sym (gensym)) (dolist-sym (gensym))) `(defun ,operator (&rest args) (let ((,init-sym ,initial-value)) (dolist (,dolist-sym args) (setq ,init-sym (,operator ,init-sym ,dolist-sym))) ,init-sym)))) (define-variadic-op + 0) (define-variadic-op * 1) ;; - and / work differently from the above macro. ;; If only one arg is given, it negates it or takes its reciprocal. ;; Otherwise all the other args are subtracted from or divided by it. ;; TODO: Use MACROLET when it exists (defmacro define-sub-or-div (operator unary-form) `(defun ,operator (x &rest args) (cond ((null args) ,unary-form) (t (dolist (y args) (setq x (,operator x y))) x)))) (define-sub-or-div - (- x)) (define-sub-or-div / (/ 1 x)) (defun 1+ (x) (+ x 1)) (defun 1- (x) (- x 1)) (defun truncate (x &optional (y 1)) (floor (/ x y))) (defun integerp (x) (and (numberp x) (= (floor x) x))) (defun floatp (x) (and (numberp x) (not (integerp x)))) (defun minusp (x) (< x 0)) (defun zerop (x) (= x 0)) (defun plusp (x) (< 0 x)) ;; TODO: Use MACROLET when it exists (defmacro defcomparison (operator) `(defun ,operator (x &rest args) (dolist (y args) (if (,operator x y) (setq x (car args)) (return-from ,operator nil))) t)) (defcomparison >) (defcomparison >=) (defcomparison =) (defcomparison <) (defcomparison <=) (defcomparison /=) (defconstant pi 3.141592653589793) (defun evenp (x) (= (mod x 2) 0)) (defun oddp (x) (not (evenp x))) (flet ((%max-min (x xs func) (dolist (y xs) (setq x (if (funcall func x (car xs)) x y))) x)) (defun max (x &rest xs) (%max-min x xs #'>)) (defun min (x &rest xs) (%max-min x xs #'<))) (defun abs (x) (if (> x 0) x (- x))) (defun expt (base power) (expt base power)) (defun exp (power) (expt 2.718281828459045 power))