Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:98068 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 78392 invoked from network); 31 Jan 2017 10:25:23 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 31 Jan 2017 10:25:23 -0000 Authentication-Results: pb1.pair.com smtp.mail=yohgaki@ohgaki.net; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=yohgaki@ohgaki.net; sender-id=pass Received-SPF: pass (pb1.pair.com: domain ohgaki.net designates 180.42.98.130 as permitted sender) X-PHP-List-Original-Sender: yohgaki@ohgaki.net X-Host-Fingerprint: 180.42.98.130 ns1.es-i.jp Received: from [180.42.98.130] ([180.42.98.130:55744] helo=es-i.jp) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B0/B1-51557-01660985 for ; Tue, 31 Jan 2017 05:25:23 -0500 Received: (qmail 22992 invoked by uid 89); 31 Jan 2017 10:25:17 -0000 Received: from unknown (HELO mail-wm0-f51.google.com) (yohgaki@ohgaki.net@74.125.82.51) by 0 with ESMTPA; 31 Jan 2017 10:25:17 -0000 Received: by mail-wm0-f51.google.com with SMTP id v77so86578614wmv.0 for ; Tue, 31 Jan 2017 02:25:16 -0800 (PST) X-Gm-Message-State: AIkVDXIlVQA5lGfDFBJY0I7IYMEVPCeICcppoKrK813JxjrAWTgME5OrW58F4TVF/ps5vFRyGUvq8RrxZpATlQ== X-Received: by 10.28.230.194 with SMTP id e63mr18371916wmi.25.1485858307555; Tue, 31 Jan 2017 02:25:07 -0800 (PST) MIME-Version: 1.0 Received: by 10.195.12.8 with HTTP; Tue, 31 Jan 2017 02:24:26 -0800 (PST) In-Reply-To: References: Date: Tue, 31 Jan 2017 19:24:26 +0900 X-Gmail-Original-Message-ID: Message-ID: To: Andrea Faulds Cc: "internals@lists.php.net" Content-Type: multipart/alternative; boundary=001a1147c8249bfdc205476158ff Subject: Re: [PHP-DEV] Re: Reseeding rand()/mt_rand() From: yohgaki@ohgaki.net (Yasuo Ohgaki) --001a1147c8249bfdc205476158ff Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi Andrea, On Tue, Jan 31, 2017 at 1:29 AM, Andrea Faulds wrote: > > Christoph M. Becker wrote: > > Just a quick idea: >> >> > >> class PNRG { >> public function __construct($seed =3D null) {=E2=80=A6} >> public function get() {=E2=80=A6} >> } >> >> > I've long favoured an API along these lines. One size does not fit all, > you need two APIs for (non-crytographic) random numbers: > - automatically-seeded, non-reproducible numbers (a global function like > rand()) > - manually-seeded, reproducible number sequences (objects) > I agree. We should have PRNG object. > > Currently we mix these two, and it's a mess. The easy solution would be a > random number-generating object like you propose, to cover the second > use-case. We could also introduce a non-manually-seedable global PRNG als= o, > if desired. Perhaps as a static method of that class. > Mixing system and user seeded PRNG is mess. I totally agree. Let's divide them into separated states. > > One thought: it'd be nice if you had two different methods, one that > mutates in places, and one that doesn't, i.e.: > > $prng1 =3D new PRNG(SEED); > [$randomNumber, $prng2] =3D $prng2->getWithNewPRNG(); > > v.s.: > > $prng =3D new PRNG(SEED); > $randomNumber =3D $prng->get(); > $randomNumber2 =3D $prng->get(); My current objective is to make existing API to work, so resource may be used to set/get PRNG state. *** Initialize and Create new PRNG state resource *** resource mt_srand([int|string $seed]) resource: MT rand state resource. $seed: I would like to allow large seed like Python and Ruby. When seed is string, use all bits for MT rand state initialization. Example usage: mt_srand(random_bytes(2000)); *** Get random number from state resource *** int mt_rand() // System state int mt_rand(resource $state) // Specified user state int mt_rand(int $min , int $max [,resource $state]) // Specified user state if $state is passed I suppose most codes do not use mt_srand()/srand(). With new API, users may write code like =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D // We need the same random numbers here $my_state =3D mt_srand(1234); // NOTE: mt_srand(), w/o seed, creates new PRNG state. for ($i=3D0; $i < 10; $i++) { // Use my PRNG state $my_rand[] =3D mt_rand($my_state); } Somewhere later in code // We need somewhat random numbers for non CS purpose for ($i=3D0; $i < 10; $i++) { // System PRNG state is affected by mt_srand()/srand() // and $my_other_rand will have proper random values $my_other_rand[] =3D mt_rand(); } =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D This requires code modifications, but it isn't too bad. Problem is this change would be master only and other functions, e.g. shuffle(), have optional state resource parameter or not. Thoughts? Comments? Regards, -- Yasuo Ohgaki yohgaki@ohgaki.net --001a1147c8249bfdc205476158ff--