roqoqo_test/
lib.rs

1// Copyright © 2021-2024 HQS Quantum Simulations GmbH. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4// in compliance with the License. You may obtain a copy of the License at
5//
6//     http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software distributed under the
9// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
10// express or implied. See the License for the specific language governing permissions and
11// limitations under the License.
12
13//! Provides utility functions to test the implementation of roqoqo backends.
14//!
15//! When implementing evaluating backends for roqoqo the translation of roqoqo
16//! operations should be tested.
17//! This crate provides helper functions that can be used to test the implementation
18//! of the interface of the
19
20mod stochastic_gate_test;
21pub use stochastic_gate_test::*;