UNPKG

consys-solver

Version:

consys-solver is a tool to find feasible model assignments for consys constraint systems.

15 lines (14 loc) 339 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Random number generator. Default math random function is sufficient. */ class RandomUtils { /** * Returns a random number between 0 and 1. */ static unsignedFloat() { return Math.random(); } } exports.default = RandomUtils;