/* * @license Apache-2.0 * * Copyright (c) 2019 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // TypeScript Version: 4.1 /// import * as random from '@stdlib/types/random'; /** * Interface defining `factory` options. */ interface Options { /** * Name of pseudorandom number generator. */ name?: 'mt19937' | 'minstd' | 'minstd-shuffle'; /** * Pseudorandom number generator seed. */ seed?: random.PRNGSeedMT19937; /** * Pseudorandom number generator state. */ state?: random.PRNGStateMT19937; /** * Specifies whether to copy a provided pseudorandom number generator state. */ copy?: boolean; } /** * Interface for PRNG properties and methods. */ interface PRNG { /** * Generator name. */ readonly NAME: string; /** * Underlying pseudorandom number generator. */ readonly PRNG: random.PRNG; /** * Minimum possible value (specific to underlying PRNG). */ readonly MIN: number; /** * Maximum possible value (specific to underlying PRNG). */ readonly MAX: number; /** * PRNG seed. */ readonly seed: random.PRNGSeedMT19937; /** * PRNG seed length. */ readonly seedLength: number; /** * PRNG state. */ state: random.PRNGStateMT19937; /** * PRNG state length. */ readonly stateLength: number; /** * PRNG state size (in bytes). */ readonly byteLength: number; /** * Serializes the pseudorandom number generator as a JSON object. * * @returns JSON representation */ toJSON(): string; } /** * Interface for generating pseudorandom numbers having integer values. */ interface NullaryFunction extends PRNG { /** * Returns a pseudorandom number having an integer value. * * @returns pseudorandom number */ (): number; } /** * Interface for generating pseudorandom numbers having integer values. */ interface Random extends PRNG { /** * Returns a pseudorandom number having an integer value. * * ## Notes * * - The default underlying pseudorandom number generator (PRNG) *may* change in the future. If exact reproducibility is required, either use the `factory` method to explicitly specify a PRNG via the `name` option or use an underlying PRNG directly. * * @returns pseudorandom number * * @example * var v = randi(); * // returns */ (): number; /** * Returns a pseudorandom number generator for generating random numbers having integer values. * * @param options - function options * @param options.name - name of pseudorandom number generator (default: `mt19937`) * @param options.seed - pseudorandom number generator seed * @param options.state - pseudorandom number generator state * @param options.copy - boolean indicating whether to copy a provided pseudorandom number generator state (default: true) * @throws must provide valid options * @throws must provide the name of a supported pseudorandom number generator * @returns pseudorandom number generator * * @example * var rand = randi.factory(); * var v = rand(); * // returns * * @example * var rand = randi.factory({ * 'name': 'minstd' * }); * var v = rand(); * // returns * * @example * var rand = randi.factory({ * 'seed': 12345 * }); * var v = rand(); * // returns * * @example * var rand = randi.factory({ * 'name': 'minstd', * 'seed': 12345 * }); * var v = rand(); * // returns */ factory( options?: Options ): NullaryFunction; } /** * Returns a pseudorandom number having an integer value. * * ## Notes * * - The default underlying pseudorandom number generator (PRNG) *may* change in the future. If exact reproducibility is required, either use the `factory` method to explicitly specify a PRNG via the `name` option or use an underlying PRNG directly. * * @returns pseudorandom number * * @example * var v = randi(); * // returns * * @example * var rand = randi.factory({ * 'seed': 12345 * }); * var v = rand(); * // returns */ declare var randi: Random; // EXPORTS // export = randi;