Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:116243 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 70768 invoked from network); 7 Oct 2021 13:16:13 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 7 Oct 2021 13:16:13 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 8419D180540 for ; Thu, 7 Oct 2021 07:01:11 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_20,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE, RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS15169 209.85.128.0/17 X-Spam-Virus: No X-Envelope-From: Received: from mail-ed1-f42.google.com (mail-ed1-f42.google.com [209.85.208.42]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Thu, 7 Oct 2021 07:01:10 -0700 (PDT) Received: by mail-ed1-f42.google.com with SMTP id g10so23130471edj.1 for ; Thu, 07 Oct 2021 07:01:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=/W+vz3uZjinScSNaYt+Y1jtHLWvBNwil/7l8I6lDdDI=; b=pvSRFkazxcH9bdCz4h0y6S8ifzvH2l+1VSaIPW8a28LqpKmWtxuHTsbnaH3KV1aJNW N2wC0PYAib3sxIn6PIUWqGbeHRz7uLw6NruOkRlc5FU5x89X4r1LPMArtF2Wn8xmHRRp pAhzQt24QK4vLLGpXBtREnBG0IwhqNnNwYM8vAQi9G9uK1APMFhta6xtGTFlZjJJnHJY gUN8THFiUTIYsZzr2k5+bTe/Wxoc5/TcaMcYcr08kOLCv01g+9Ehfi3WN2a5nioQ+ebQ E+wUrn8i/lOQN52w2jT1UPT09fbMob5Ax4gelAO7iuh6Y9nPnjjvo2tlShghu2wfkujO qS5A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=/W+vz3uZjinScSNaYt+Y1jtHLWvBNwil/7l8I6lDdDI=; b=4mELZ8YBzeuoctF1j2+9OPojBPFclEjJRI72UBE1ez0mp/IfuvkwQ9BSos6HZpDrie utom6K730FeDwQWlmFme9bnqRWXyS6y/kZM3M2vBSzKfZEbPBzhPXUT6ZpQMIp1QZPwh lf+GFavz1tIUPXuDAlTsG31oxqFSQbwqPYQhpLORhwzD+c/squU1JucKJQQj1Bk7c7bl +RF1f3GW8f/+5QwGxznEbhcrdzHaFtV0prq9Ayus5P5GCzz76XqWnIvUSWk4vHwrsWl4 /T64S/dyodSYieGkGKbmbGc1nyqWGA0uR0+VFOlDCYAR4rLzKUHn3Y2hmY0LrgLDDR2i FRSw== X-Gm-Message-State: AOAM533yNi8uyyM7nNWMIykVBGif1aUYm2WF3mHLAHLjnF+sV2pESE8x 6WwjxyVDGre+sTs+WBinNhwkhS4UiLdtWaAkQF2Ruj50pNc= X-Google-Smtp-Source: ABdhPJzx2u5xExlWA54Lx3ONujHXef8ACw2znkvQRVNFydZROENzdDbSZ4uRif2lCB9nMU8LZGylYICZ/2OqLzHXoZc= X-Received: by 2002:a17:906:e85:: with SMTP id p5mr5817078ejf.159.1633615263455; Thu, 07 Oct 2021 07:01:03 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Thu, 7 Oct 2021 23:00:52 +0900 Message-ID: To: Kamil Tekiela , PHP internals Content-Type: multipart/alternative; boundary="0000000000007a5d6b05cdc3b115" Subject: Re: [PHP-DEV] [RFC] Random Extension 3.0 From: zeriyoshi@gmail.com (Go Kudo) --0000000000007a5d6b05cdc3b115 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable The RFCs are in limbo, but we are currently thinking of including the following RNGs in the proposal - XorShift128Plus - MT19937 (for compatibility) - MT19937_64 (for more entropy and wider range) While it is clear that MT19937 is simply MersenneTwister, it is not accurate since there is MT19937_64. Also, currently, the constant name that can be passed to mt_srand() is MT_RAND_MT19937, so I think it is consistent to use MT19937. If you mean that it should be MT19937 instead of MT19937_32, then I think you are right. Please let me know your opinion. 2021=E5=B9=B410=E6=9C=887=E6=97=A5(=E6=9C=A8) 21:56 Kamil Tekiela : > Please don't add more answers to the class name. There is already going t= o > be a backlash if we name it "MT19973" instead of "MersenneTwister" > --0000000000007a5d6b05cdc3b115--