microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/resource_estimator/src/estimates.rs
25lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | mod error; |
| 5 | pub use error::Error; |
| 6 | mod error_budget; |
| 7 | pub use error_budget::{ErrorBudget, ErrorBudgetStrategy}; |
| 8 | mod error_correction; |
| 9 | pub use error_correction::{ |
| 10 | CodeWithThresholdAndDistance, CodeWithThresholdAndDistanceEvaluator, ErrorCorrection, |
| 11 | }; |
| 12 | mod factory; |
| 13 | pub use factory::{ |
| 14 | BuilderDispatch2, DistillationRound, DistillationUnit, Factory, FactoryBuildError, |
| 15 | FactoryBuilder, FactoryDispatch2, NoFactories, PhysicalQubitCalculation, RoundBasedFactory, |
| 16 | }; |
| 17 | mod physical_estimation; |
| 18 | pub use physical_estimation::{ |
| 19 | FactoryPart, PhysicalResourceEstimation, PhysicalResourceEstimationResult, |
| 20 | }; |
| 21 | mod layout; |
| 22 | mod logical_qubit; |
| 23 | pub use layout::{Overhead, RealizedOverhead}; |
| 24 | pub use logical_qubit::LogicalPatch; |
| 25 | pub mod optimization; |
| 26 | |