forked from microsoft/qsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestimates.rs
25 lines (24 loc) · 820 Bytes
/
estimates.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
mod error;
pub use error::Error;
mod error_budget;
pub use error_budget::{ErrorBudget, ErrorBudgetStrategy};
mod error_correction;
pub use error_correction::{
CodeWithThresholdAndDistance, CodeWithThresholdAndDistanceEvaluator, ErrorCorrection,
};
mod factory;
pub use factory::{
BuilderDispatch2, DistillationRound, DistillationUnit, Factory, FactoryBuildError,
FactoryBuilder, FactoryDispatch2, NoFactories, PhysicalQubitCalculation, RoundBasedFactory,
};
mod physical_estimation;
pub use physical_estimation::{
FactoryPart, PhysicalResourceEstimation, PhysicalResourceEstimationResult,
};
mod layout;
mod logical_qubit;
pub use layout::{Overhead, RealizedOverhead};
pub use logical_qubit::LogicalPatch;
pub mod optimization;