1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
* Copyright (c) 2023 Andrew Rowan Barlow. Licensed under the EUPL-1.2
* or later. You may obtain a copy of the licence at
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12. A copy
* of the EUPL-1.2 licence in English is given in LICENCE.txt which is
* found in the root directory of this repository.
*
* Author: Andrew Rowan Barlow <a.barlow.dev@gmail.com>
*/

#![doc = include_str!("../README.md")]

pub mod circuit;
pub mod complex;
mod error;

use error::QuantrError;