dvcompute_rand_dist/lib.rs
1// Copyright (c) 2020-2022 David Sorokin <davsor@mail.ru>, based in Yoshkar-Ola, Russia
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
7//! This crate is a part of discrete event simulation framework DVCompute Simulator (registration
8//! number 2021660590 of Rospatent). The crate defines random number generator primitives.
9//!
10//! There are the following main crates: `dvcompute` (sequential simulation),
11//! `dvcompute_dist` (optimistic distributed simulation),
12//! `dvcompute_cons` (conservative distributed simulation) and
13//! `dvcompute_branch` (nested simulation). All four crates are
14//! very close. They are based on the same method.
15
16extern crate rand;
17
18/// The main simulation module.
19pub mod simulation;
20
21#[cfg(test)]
22mod tests {
23 #[test]
24 fn it_works() {
25 }
26}