SemRand es un simulador de números random. Cuenta con los siguientes generadores:
- MCC: Método de los Centros Cuadrados
- C: Método Congruencial
- CM: Método Congruencial Mixto con validación Teorema de HULL-DOBELL
- M: Generador Multiplicativo
- CLC: Método Congruencial lineal Combinado
Para los casos MC, MCM y GM se puede validar la aceptación con las pruebas de Chi-Cuadrada y Kolmogorov-Smirnov.
# Clone repository
git clone https://github.com/tlacuilose/simulador-random.git
# Go into the repository
cd simulador-random
# Install dependencies
npm install
# Run the app
npm start
Note: If you're using Linux Bash for Windows, see this guide or use node
from the command prompt.
To test run:
npm test
- Mocha documentation - getting started
- Chai documentation - documentation
- Chai documentation - expect, most common test evaluator
- Spectron repository - usage
- WebDriver IO Docs - traveling through the html
- The Model-View-ViewModel Pattern - Microsoft
- Mozilla Web Docs - classes in javascript
- JSDoc usage - getting started, run jsdoc script.js
- electronjs.org/docs - all of Electron's documentation
- electronjs.org/community#boilerplates - sample starter apps created by the community
- electron/electron-quick-start - a very basic starter Electron app
- electron/simple-samples - small applications with ideas for taking them further
- electron/electron-api-demos - an Electron app that teaches you how to use Electron
- hokein/electron-sample-apps - small demo apps for the various Electron APIs