pub struct ZneConfig {
pub noise_factors: Vec<f64>,
pub extrapolation: ExtrapolationMethod,
}Expand description
Configuration for Zero-Noise Extrapolation.
Fields§
§noise_factors: Vec<f64>Noise scaling factors to sample (must include 1.0 as the baseline).
extrapolation: ExtrapolationMethodMethod used to extrapolate to the zero-noise limit.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZneConfig
impl RefUnwindSafe for ZneConfig
impl Send for ZneConfig
impl Sync for ZneConfig
impl Unpin for ZneConfig
impl UnsafeUnpin for ZneConfig
impl UnwindSafe for ZneConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more