/usr/share/acl2-6.5/books/cgen/random-state-basis1.lisp is in acl2-books-source 6.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #|$ACL2s-Preamble$;
(ld ;; Newline to fool ACL2/cert.pl dependency scanner
"portcullis.lsp")
(acl2::begin-book);$ACL2s-Preamble$|#
(in-package "DEFDATA")
(set-verify-guards-eagerness 2)
(include-book "tools/bstar" :dir :system)
(local (include-book "arithmetic-3/floor-mod/floor-mod" :dir :system))
(defconst *M31* 2147483647);1 less than 2^31
(defconst *P1* 16807)
(make-event
(er-progn
(assign random-seed 1382728371)
(value '(value-triple (@ random-seed))))
:check-expansion t)
(defun getseed (state)
(declare (xargs :stobjs (state)))
(if (f-boundp-global 'random-seed state)
(b* ((s (@ random-seed)))
(if (unsigned-byte-p 31 s)
(the (unsigned-byte 31) s)
0))
0))
(defthm getseed-unsigned-byte31
(unsigned-byte-p 31 (getseed state))
:rule-classes (:rewrite :type-prescription))
(defthm getseed-nat
(natp (getseed state))
:rule-classes :type-prescription)
(defthm getseed-<-*m31*
(<= (getseed state) *M31*)
:rule-classes :linear)
(in-theory (disable getseed))
(defun putseed (s state)
(declare (xargs :stobjs (state)
:guard (unsigned-byte-p 31 s)))
(declare (type (unsigned-byte 31) s))
(acl2::f-put-global 'random-seed s state))
(defun genrandom-seed (max seed.)
"generates a pseudo-random number less than max, given that the
current random seed is seed. and also returns the new seed."
(declare (type (unsigned-byte 31) max)
(type (unsigned-byte 31) seed.))
(declare (xargs :guard (and (unsigned-byte-p 31 seed.)
(unsigned-byte-p 31 max)
(posp max))))
(mbe :logic (if (and (posp max)
(unsigned-byte-p 31 seed.))
(b* (((the (unsigned-byte 31) seed.) (mod (* *P1* seed.) *M31*)))
(mv (the (unsigned-byte 31) (mod seed. max)) seed.))
(mv 0 seed.))
:exec (b* (((the (unsigned-byte 31) seed.) (mod (* *P1* seed.) *M31*)))
(mv (the (unsigned-byte 31) (mod seed. max)) (the (unsigned-byte 31) seed.)))))
(defun genrandom-state (max state)
"generates a pseudo-random number less than max"
(declare (type (unsigned-byte 31) max))
(declare (xargs :stobjs (state)
:guard (and (unsigned-byte-p 31 max)
(posp max))))
(b* (((the (unsigned-byte 31) old-seed) (getseed state))
((the (unsigned-byte 31) new-seed) (mod (* *P1* old-seed) *M31*))
(state (acl2::f-put-global 'random-seed new-seed state)))
(mv (if (zp max)
0
(the (unsigned-byte 31) (mod new-seed max)))
state)))
(encapsulate nil
(local (defthm lemma1
(IMPLIES (and (posp max)
(natp x))
(<= 0 (MOD x MAX)))
:rule-classes :linear))
(local (defthm lemma2
(IMPLIES (AND (posp MAX)
(< MAX 2147483648)
(natp x))
(< (MOD x MAX)
2147483648))
:rule-classes :linear))
(defthm genrandom-natural1
(implies (and (posp max)) ;(natp seed))
(and (integerp (car (genrandom-seed max seed)))
(>= (car (genrandom-seed max seed)) 0))
)
:rule-classes :type-prescription)
(defthm genrandom-natural2-type
(implies (and (natp seed))
(and (integerp (mv-nth 1 (genrandom-seed max seed)))
(<= 0 (mv-nth 1 (genrandom-seed max seed)))))
:rule-classes :type-prescription)
(defthm genrandom-ub31-1
(implies (and (<= 1 max)
(unsigned-byte-p 31 max)
(natp seed))
(unsigned-byte-p 31 (car (genrandom-seed max seed))))
:rule-classes (:type-prescription))
;; (defthm genrandom-ub31-2
;; (implies (and (natp seed))
;; (unsigned-byte-p 31 (mv-nth 1 (genrandom-seed max seed))))
;; :rule-classes :tau-system)
(defthm genrandom-minimum1
(implies (and (posp max) (natp seed))
(<= 0 (car (genrandom-seed max seed))))
:rule-classes :linear)
(defthm genrandom-minimum2
(implies (and (natp seed))
(<= 0 (mv-nth 1 (genrandom-seed max seed))))
:rule-classes :linear)
(defthm genrandom-maximum1
(implies (and (posp max))
(< (car (genrandom-seed max seed)) max))
:rule-classes (:linear))
(defthm genrandom-maximum2
(implies (and (posp max)
(unsigned-byte-p 31 seed))
(< (mv-nth 1 (genrandom-seed max seed)) *M31*))
:rule-classes :linear)
(defthm genrandom-state-natural
(natp (car (genrandom-state max state)))
:rule-classes :type-prescription)
(defthm genrandom-state-minimum
(<= 0 (car (genrandom-state max state)))
:rule-classes :linear)
(defthm genrandom-state-maximum
(implies (posp max)
(<= (car (genrandom-state max state)) (1- max)))
:rule-classes :linear)
)
(in-theory (disable genrandom-seed genrandom-state))#|ACL2s-ToDo-Line|#
|