SRFI-1: Rewrite `break' and `break!' in Scheme.
[bpt/guile.git] / benchmark-suite / benchmarks / srfi-1.bm
CommitLineData
0b7f2eb8
LC
1;;; -*- mode: scheme; coding: utf-8; -*-
2;;; SRFI-1.
3;;;
4;;; Copyright 2010 Free Software Foundation, Inc.
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU Lesser General Public License
8;;; as published by the Free Software Foundation; either version 3, or
9;;; (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU Lesser General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU Lesser General Public
17;;; License along with this software; see the file COPYING.LESSER. If
18;;; not, write to the Free Software Foundation, Inc., 51 Franklin
19;;; Street, Fifth Floor, Boston, MA 02110-1301 USA
20
21(define-module (benchmarks srfi-1)
22 #:use-module (srfi srfi-1)
23 #:use-module (benchmark-suite lib))
24
25(define %big-list
26 (iota 1000000))
27
28(define %small-list
29 (iota 10))
30
31\f
32(with-benchmark-prefix "fold"
33
34 (benchmark "fold" 30
35 (fold (lambda (x y) y) #f %big-list))
36
37 (benchmark "fold" 2000000
38 (fold (lambda (x y) y) #f %small-list)))