all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob de1eb42a3018c5f7804917fe440259bc07efec7b 1890 bytes (raw)
name: packages/elisp-benchmarks/benchmarks/pidigits.el 	 # note: path name is non-authoritative(*)

 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
 
;; -*- lexical-binding: t; -*-

;; Copyright (C) 2019 Free Software Foundation, Inc.

;; This file is part of GNU Emacs.

;; GNU Emacs 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.

;; GNU Emacs 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 GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; Adapted to elisp from CL version from:
;; https://salsa.debian.org/benchmarksgame-team/benchmarksgame/

;; Compute pi

(require 'cl-lib)

(defvar elb-acc)
(defvar elb-den)
(defvar elb-num)

(defun elb-extract-digit (nth)
  (truncate (+ (* elb-num nth) elb-acc) elb-den))

(defun elb-eliminate-digit (d)
  (cl-decf elb-acc (* elb-den d))
  (setf elb-acc (* elb-acc 10)
	elb-num (* elb-num 10)))

(defun elb-next-term (k)
  (let ((k2 (1+ (* k 2))))
    (cl-incf elb-acc (* elb-num 2))
    (setf elb-acc (* elb-acc k2)
	  elb-den (* elb-den k2)
	  elb-num (* elb-num k))))

(defun elb-pidigits (x)
  (let ((elb-acc 0)
	(elb-den 1)
	(elb-num 1)
	(res ()))
    (cl-do ((d 0) (k 0) (i 0) (n 10000))
	((>= i n))
      (setf n x)
      (elb-next-term (cl-incf k))
      (unless (> elb-num elb-acc)
	(setf d (elb-extract-digit 3))
	(unless (/= d (elb-extract-digit 4))
	  (push d res)
	  (cl-incf i)
 	  ;; (when (= (mod (cl-incf i) 10) 0)
	  ;;   (message "%d" i))
	  (elb-eliminate-digit d))))
    (reverse res)))

(defun elb-pidigits-entry ()
  (cl-loop repeat 1000
	   do (elb-pidigits 500)))

(provide 'elb-pidigits)

debug log:

solving de1eb42a3 ...
found de1eb42a3 in https://yhetil.org/emacs/xjfv9qtv7bq.fsf@sdf.org/ ||
	https://yhetil.org/emacs/xjf1rtisic7.fsf@sdf.org/

applying [1/1] https://yhetil.org/emacs/xjfv9qtv7bq.fsf@sdf.org/
diff --git a/packages/elisp-benchmarks/benchmarks/pidigits.el b/packages/elisp-benchmarks/benchmarks/pidigits.el
new file mode 100644
index 000000000..de1eb42a3

1:68: space before tab in indent.
 	  ;; (when (= (mod (cl-incf i) 10) 0)
Checking patch packages/elisp-benchmarks/benchmarks/pidigits.el...
Applied patch packages/elisp-benchmarks/benchmarks/pidigits.el cleanly.
warning: 1 line adds whitespace errors.

skipping https://yhetil.org/emacs/xjf1rtisic7.fsf@sdf.org/ for de1eb42a3
index at:
100644 de1eb42a3018c5f7804917fe440259bc07efec7b	packages/elisp-benchmarks/benchmarks/pidigits.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.