dqcsim 0.0.4

DQCsim: Delft Quantum Classical Simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use super::*;

// dqcs_pcfg_* functions, for constructing `PluginProcessConfiguration`
// objects.
mod pcfg;
pub use pcfg::*;

// dqcs_pcfg_* functions, for constructing `PluginThreadConfiguration` objects.
mod tcfg;
pub use tcfg::*;

// dqcs_scfg_* functions, for constructing `SimulatorConfiguration` objects.
mod scfg;
pub use scfg::*;

// dqcs_sim_* functions, for controlling a DQCsim simulator.
mod sim;
pub use sim::*;