1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright (c) 2020-2022 David Sorokin <davsor@mail.ru>, based in Yoshkar-Ola, Russia
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
pub use Point;
pub use Specs;
pub use SpecsRepr;
pub use Run;
pub use Result;
/// The type of errors that may arise during simulation.
/// The random number generator.
/// A mutable reference computation.
/// The `Parameter` computation to define external parameters.
/// The `Simulation` computation as a function of run.
/// The `Event` computation synchronized with the event queue.
/// The `Observable` computation that allows notifying about events.
/// The `Process` computation to represent discontinuous processes.
/// The `Composite` trait to create disposable computations.
/// The `Stream` type to represent infinite streams.
/// The queue strategies.
/// The resources.
/// A communication part of the logical process.
/// The queues.
/// The utilities used in the simulation library.
/// The internal details of implementation.