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
//! This module provides a C interface to the DQCsim simulator.
//!
//! Refer to [the generated API docs](https://qe-lab.github.io/dqcsim/c-api/c-api.apigen.html)
//! for more information.
use *;
use crate::;
use *;
use Complex64;
use ;
// Module containing type definitions shared between rust and C.
pub use *;
// Module containing all the external functions exposed to the library user.
pub use *;
// Module containing the thread-local API state object. This object owns all
// the objects that are directly manipulable by the API and are not otherwise
// owned by any DQCsim instance.
use *;
// Module containing utility functions and auxiliary data structures.
use *;