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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
;; A practical implementation for the Scheme programming language
;;
;; ,--^,
;; _ ___/ /|/
;; ,;'( )__, ) '
;; ;; // L__.
;; ' \\ / '
;; ^ ^
;;
;; Copyright (c) 1992-2004 Manuel Serrano
;;
;; Bug descriptions, use reports, comments or suggestions are
;; welcome. Send them to
;; bigloo@sophia.inria.fr
;; http://www.inria.fr/mimosa/fp/Bigloo
;;
;; This program 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 2 of the License, or
;; (at your option) any later version. More precisely,
;;
;; - The compiler and the tools are distributed under the terms of the
;; GNU General Public License.
;;
;; - The Bigloo run-time system and the libraries are distributed under
;; the terms of the GNU Library General Public License. The source code
;; of the Bigloo runtime system is located in the ./runtime directory.
;; The source code of the FairThreads library is located in the
;; ./fthread directory.
;;
;; This program 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 this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
;; MA 02111-1307, USA.
;*---------------------------------------------------------------------*/
;* serrano/prgm/project/bigloo/recette/apply.scm */
;* */
;* Author : Manuel Serrano */
;* Creation : Tue Nov 3 10:58:26 1992 */
;* Last change : Tue Aug 24 15:06:18 2004 (serrano) */
;* */
;* On test differentes sortes d'apply */
;*---------------------------------------------------------------------*/
;; ChangeLog
;;
;; 2005-08-18 kzk Copied from Bigloo 2.6e and adapted to SigScheme
(load "./test/unittest-bigloo.scm")
;*---------------------------------------------------------------------*/
;* gtest1 ... */
;*---------------------------------------------------------------------*/
(define gtest1
(lambda (x y)
(+ x y)))
;*---------------------------------------------------------------------*/
;* gtest2 ... */
;*---------------------------------------------------------------------*/
(define (gtest2 . x)
(+ (car x) (cadr x)))
;*---------------------------------------------------------------------*/
;* gtest3 ... */
;*---------------------------------------------------------------------*/
(define (gtest3 x . y)
(+ x (car y)))
;*---------------------------------------------------------------------*/
;* gtest4 ... */
;*---------------------------------------------------------------------*/
(define (gtest4)
'foo)
;*---------------------------------------------------------------------*/
;* gtest4b ... */
;*---------------------------------------------------------------------*/
(define (gtest4b . x)
'foo)
;*---------------------------------------------------------------------*/
;* gtest5 ... */
;*---------------------------------------------------------------------*/
(define (gtest5)
(lambda ()
'foo))
;*---------------------------------------------------------------------*/
;* gtest6 ... */
;*---------------------------------------------------------------------*/
(define (gtest6)
(lambda x
'foo))
;*---------------------------------------------------------------------*/
;* ltest1 ... */
;*---------------------------------------------------------------------*/
(define (ltest1 a b)
(let ((foo (lambda (x y) (+ x y))))
(apply foo (list (+ 1 a) (+ 1 b)))))
;*---------------------------------------------------------------------*/
;* ltest2 ... */
;*---------------------------------------------------------------------*/
(define (ltest2 a b)
(let ((foo (lambda (x y) (+ x (+ y (+ a b))))))
foo))
;*---------------------------------------------------------------------*/
;* ltest3 ... */
;*---------------------------------------------------------------------*/
(define (ltest3 a)
(let ((foo (lambda (z . x)
(let loop ((x x))
(if (null? x)
a
(+ (car x) (loop (cdr x))))))))
foo))
;*---------------------------------------------------------------------*/
;* extern-apply ... */
;*---------------------------------------------------------------------*/
(define (extern-apply x)
(apply foo1 x))
;*---------------------------------------------------------------------*/
;* apply-dummy ... */
;* ------------------------------------------------------------- */
;* Bigloo1.9 was unable to compile this extern apply form. */
;*---------------------------------------------------------------------*/
(define (apply-dummy x y)
(apply c-dummy (cons x y)))
;*---------------------------------------------------------------------*/
;* test-apply ... */
;*---------------------------------------------------------------------*/
(define (test-apply)
(test "extern apply" (extern-apply '(1)) 1)
(test "gapply" (apply gtest1 '(1 3)) 4)
(test "gapply" ((begin gtest1) 1 3) 4)
(test "gapply" (apply gtest2 '(1 3)) 4)
(test "gapply" ((begin gtest2) 1 3) 4)
(test "gapply" (apply gtest3 '(1 3)) 4)
(test "gapply" ((begin gtest3) 1 3) 4)
(test "gapply" (apply (begin gtest1) '(1 3)) 4)
(test "gapply" (apply (begin gtest2) '(1 3)) 4)
(test "gapply" (apply (begin gtest3) '(1 3)) 4)
(test "gapply" (apply gtest4 '()) 'foo)
(test "gapply" (apply gtest4b '()) 'foo)
(test "gapply" (apply (gtest5) '()) 'foo)
(test "gapply" (apply (gtest6) '()) 'foo)
(test "lapply" (ltest1 1 2) 5)
(test "lapply" ((ltest2 2 3) 1 2) 8)
(test "lapply" (apply (ltest2 2 3) (list 1 2)) 8)
(test "lapply" ((ltest3 1) 0 2 3 4) 10)
(test "lapply" (apply (ltest3 1) (list 0 2 3 4)) 10)
(test "lapply" (apply (lambda (x y) (list x y)) '(1 2)) '(1 2))
(test "napply" (apply cons 1 '(2)) '(1 . 2))
(test "napply" (apply cons 1 2 '()) '(1 . 2))
(test "aapply" (apply apply cons (list 1 2 '())) '(1 . 2))
(test "mapply" (apply (lambda (z) z) 1 '()) 1)
(test "mapply" (apply (lambda (z) z) '(1)) 1)
(test "mapply" (apply (lambda (a z) z) '(1 2)) 2)
(test "mapply" (apply (lambda (a z) z) 1 '(2)) 2)
(test "mapply" (apply (lambda (a z) z) 1 2 '()) 2)
(test "mapply" (apply (lambda (a b c z) z) '(1 2 3 4)) 4)
(test "mapply" (apply (lambda (a b c z) z) 1 '(2 3 4)) 4)
(test "mapply" (apply (lambda (a b c z) z) 1 2 '(3 4)) 4)
(test "mapply" (apply (lambda (a b c z) z) 1 2 3 '(4)) 4)
(test "mapply" (apply (lambda (a b c z) z) 1 2 3 4 '()) 4)
(test "mapply" (apply (lambda (a b c d z) z) 1 2 3 4 '(5))5)
(test "mapply" (apply (lambda (a b c d z) z) 1 2 3 4 5 '()) 5)
(test "mapply" (apply (lambda (a b c d e z) z) 1 2 3 4 '(5 6)) 6)
(test "mapply" (apply (lambda (a b c d e f z) z) 1 2 3 4 '(5 6 7)) 7)
(test "mapply" (apply (lambda (a b . z) (car z)) 1 2 3 4 5 '(6 7)) 3)
(test "mapply" (apply (lambda (a . z) (car z)) 1 2 3 4 '(5 6 7)) 2)
(test "mapply" (apply (lambda (a b c d . z) (car z)) 1 2 3 4 '(5 6 7)) 5)
(test "mapply" (apply (lambda (a b c d e . z) (car z)) 1 '(2 3 4 5 6 7)) 6)
(test "mapply" (apply (lambda (a b c d e f . z) (car z)) 1 2 3 4 '(5 6 7)) 7)
(test "mapply" (apply (lambda (a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32) (list a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32))
(list 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))
'(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))
(test "mapply" (apply (lambda (a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32)
(list a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32))
(apply (lambda (a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32) (list a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32))
(list 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)))
'(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))
(test "mapply" (apply (lambda (a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 . a32) (list a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20 a21 a22 a23 a24 a25 a26 a27 a28 a29 a30 a31 a32))
(list 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))
'(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))))
(test-apply)
(total-report)
|