dvcompute_utils/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 utilities.
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
16/// The main simulation module.
17pub mod simulation;
18
19/// Some collection types.
20pub mod collections;
21
22/// Shared references which can be garbage collected after
23/// the simulation run is finished.
24pub mod grc;
25
26/// The main import.
27pub mod prelude;
28
29#[cfg(test)]
30mod tests {
31 #[test]
32 fn it_works() {
33 }
34}