sim/lib.rs
1//! # Overview
2//! "Sim" or "Sim-RS" provides a discrete event simulation engine, to
3//! facilitate Rust- and npm-based simulation products and projects.
4//!
5//! This repository contains:
6//!
7//! * Random variable framework, for easy specification of stochastic model
8//! behaviors.
9//! * Pre-built atomic models, for quickly building out simulations of
10//! dynamic systems with common modular components.
11//! * Output analysis framework, for analyzing simulation outputs
12//! statistically.
13//! * Simulator engine, for managing and executing discrete event
14//! simulations.
15//!
16//! Sim is compatible with a wide variety of compilation targets, including
17//! WASM. Sim does not require nightly Rust.
18pub mod input_modeling;
19pub mod models;
20pub mod output_analysis;
21pub mod simulator;
22pub mod utils;