!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/ai_detect/Flower_Classification_Tensorflow.js/train/node_modules/seedrandom/test/   drwxr-xr-x
Free 13.11 GB of 57.97 GB (22.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     prngtest.js (3.66 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// A simple smoke test and benchmark for the generators.

var assert = require('assert');
var xor128 = require('../lib/xor128');
var xorwow = require('../lib/xorwow');
var xs7 = require('../lib/xorshift7');
var xor4096 = require('../lib/xor4096');
var tychei = require('../lib/tychei');
var alea = require('../lib/alea');
var sr = require('../seedrandom');

describe("XOR-Shift generator test", function() {

var benchmarks = { native: { rand: Math.random, times: [] } };

function test(label, alg, double1, float3, int4, hc, qc, ec, e2c) {
  var fn = alg(1);
  var fn2 = alg('hello.', { state: true });
  benchmarks[label] = {rand: fn.quick, times: []};
  it("should use " + label + " correctly", function() {
    if (double1 != null) assert.equal(fn.double(), double1);
    if (float3 != null) assert.equal(fn.quick(), float3);
    if (int4 != null) assert.equal(fn.int32(), int4);
    assert(fn() > 0);
    assert(fn() < 1);
    assert(fn2() > 0);
    // Internal state is visible only if requested.
    assert(!('state' in fn));
    assert('state' in fn2);
    var ss = fn2.state();
    var rs = fn2();
    assert(rs < 1);
    var j, h = 0, q = 0, e = 0, r, p, e2 = 0;
    for (j = 0; j < 1024; ++j) {
      r = fn();
      if (r < 0.5) h += 1;
      if (r < 0.25) q += 1;
      if (r < 0.125) e += 1;
      r2 = fn2();
      if (r2 < 0.125) e2 += 1;
    }
    if (hc != null) {
      assert.equal(h, hc);
      assert.equal(q, qc);
      assert.equal(e, ec);
      assert.equal(e2, e2c);
      h = q = e = p = 0;
      for (j = 0; j < 1024; ++j) {
        r = fn.double();
        if (r < 0.5) h += 1;
        if (r < 0.25) q += 1;
        if (r < 0.125) e += 1;
        if (fn.int32() >= 0) p += 1;
      }
      // Sanity-check double() and int32.
      assert(h >= 480 && h <= 543, h);
      assert(q >= 226 && q <= 286, q);
      assert(e >= 100 && e <= 156, e);
      assert(e2 >= 100 && e2 <= 156, e2);
      assert(p >= 482 && p <= 543, p);
    }
    var fn3 = alg(0, { state: ss });
    assert.equal(fn3(), rs);
  });
}

test("xor128", xor128,
    0.7963797148975774, 0.22171171731315553, 317177041, 498, 236, 110, 115);
test("xorwow", xorwow,
    0.8178000247146859, 0.8407576507888734, 533150816, 519, 228, 121, 123);
test("xorshift7", xs7,
    0.21241471533241418, 0.9957620368804783, -1678071207, 510, 261, 143, 124);
test("tychei", tychei,
    0.42331440041340196, 0.9365617581643164, -884984569, 521, 242, 116, 126);
test("seedrandom", sr,
    0.1776348083296759, 0.2160690303426236, 1397712774, 526, 282, 131, 137);
test("xor4096", xor4096,
    0.1520436450538547, 0.4206166828516871, 1312695376, 496, 241, 113, 142);
test("alea", alea,
    0.5260470956849501, 0.47771977609954774, -1625913352, 494, 246, 125, 122);

it("runs benchmarks", function() {
  var n = 4;
  var trials = 10;
  var top = 4;
  this.timeout(200 * n * trials);
  this.slow(30 * n * trials);
  var fn, k, start, end, j, t;
  for (k in benchmarks) {
    fn = benchmarks[k].rand;
    // warmup.
    for (j = 0; j < 1e5; ++j) fn();
  }
  for (t = 0; t < trials; ++t) {
    for (k in benchmarks) {
      fn = benchmarks[k].rand;
      start = +new Date;
      // benchmark.
      for (j = 0; j < n * 1e5; ++j) fn();
      end = +new Date;
      benchmarks[k].times.push(end - start);
    }
  }
  for (k in benchmarks) {
    benchmarks[k].times.sort();
  }
  function fastest(array) {
    var sum = 0;
    for (var j = 0; j < top; ++j) {
       sum += array[j];
    }
    return sum / top;
  }
  var nativetime = fastest(benchmarks.native.times);
  for (k in benchmarks) {
    var time = fastest(benchmarks[k].times);
    console.log(k+ ': ' + time / n + ' nanoseconds per call, ' +
       (time / nativetime).toFixed(1) + 'x native random.');
  }
});

});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0071 ]--