pub fn construct_random_circuit(
    circuit_length: usize,
    number_qubits: usize,
    seed: u64
) -> Circuit
Expand description

Function to construct a random Circuit for stochastic gate tests.

§Arguments

  • circuit_length - The number of gates to be added to the random Circuit.
  • number_qubits - Number of qubits in the circuit.
  • seed - Seed for the random number generator.

§Returns

  • circuit - The constructed random roqoqo Circuit.