pub trait ErrorModelTrait: Send + Sync {
// Required methods
fn characterize(&self, data: &ErrorData) -> ErrorCharacterization;
fn predict_error(&self, operation: &QuantumOperation) -> f64;
}Expand description
Error model trait
pub trait ErrorModelTrait: Send + Sync {
// Required methods
fn characterize(&self, data: &ErrorData) -> ErrorCharacterization;
fn predict_error(&self, operation: &QuantumOperation) -> f64;
}Error model trait