Maestro 0.2.5
Unified interface for quantum circuit simulation
Loading...
Searching...
No Matches
Types.h
Go to the documentation of this file.
1
12#pragma once
13
14#ifndef _TYPES_H_
15#define _TYPES_H_
16
17#include <memory>
18#include <vector>
19
20namespace Types {
21using qubit_t = uint_fast64_t;
23 std::vector<qubit_t>;
24using time_type = double;
25} // namespace Types
26
27#endif // !_TYPES_H_
Definition Types.h:20
double time_type
The type of time.
Definition Types.h:24
uint_fast64_t qubit_t
The type of a qubit.
Definition Types.h:21
std::vector< qubit_t > qubits_vector
The type of a vector of qubits.
Definition Types.h:23