pub struct QuantumReservoirConfig {Show 23 fields
pub num_qubits: usize,
pub architecture: QuantumReservoirArchitecture,
pub dynamics: ReservoirDynamics,
pub input_encoding: InputEncoding,
pub output_measurement: OutputMeasurement,
pub learning_config: AdvancedLearningConfig,
pub time_series_config: TimeSeriesConfig,
pub topology_config: TopologyConfig,
pub adaptive_config: AdaptiveLearningConfig,
pub memory_config: MemoryAnalysisConfig,
pub hardware_config: HardwareOptimizationConfig,
pub benchmark_config: BenchmarkingConfig,
pub time_step: f64,
pub evolution_steps: usize,
pub coupling_strength: f64,
pub noise_level: f64,
pub memory_capacity: usize,
pub adaptive_learning: bool,
pub learning_rate: f64,
pub washout_period: usize,
pub random_seed: Option<u64>,
pub enable_qec: bool,
pub precision: f64,
}
Expand description
Advanced quantum reservoir computing configuration
Fields§
§num_qubits: usize
Number of qubits in the reservoir
architecture: QuantumReservoirArchitecture
Reservoir architecture type
dynamics: ReservoirDynamics
Dynamics evolution type
input_encoding: InputEncoding
Input encoding method
output_measurement: OutputMeasurement
Output measurement strategy
learning_config: AdvancedLearningConfig
Advanced learning algorithm configuration
time_series_config: TimeSeriesConfig
Time series modeling configuration
topology_config: TopologyConfig
Topology and connectivity configuration
adaptive_config: AdaptiveLearningConfig
Adaptive learning configuration
memory_config: MemoryAnalysisConfig
Memory analysis configuration
hardware_config: HardwareOptimizationConfig
Hardware optimization configuration
benchmark_config: BenchmarkingConfig
Benchmarking configuration
time_step: f64
Time step for evolution
evolution_steps: usize
Number of evolution steps per input
coupling_strength: f64
Reservoir coupling strength
noise_level: f64
Noise level (for NISQ dynamics)
memory_capacity: usize
Memory capacity (time steps to remember)
adaptive_learning: bool
Enable real-time adaptation
learning_rate: f64
Learning rate for adaptation
washout_period: usize
Washout period (initial time steps to ignore)
random_seed: Option<u64>
Random seed for reproducibility
enable_qec: bool
Enable quantum error correction
precision: f64
Precision for calculations
Trait Implementations§
Source§impl Clone for QuantumReservoirConfig
impl Clone for QuantumReservoirConfig
Source§fn clone(&self) -> QuantumReservoirConfig
fn clone(&self) -> QuantumReservoirConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for QuantumReservoirConfig
impl Debug for QuantumReservoirConfig
Source§impl Default for QuantumReservoirConfig
impl Default for QuantumReservoirConfig
Source§impl<'de> Deserialize<'de> for QuantumReservoirConfig
impl<'de> Deserialize<'de> for QuantumReservoirConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for QuantumReservoirConfig
impl RefUnwindSafe for QuantumReservoirConfig
impl Send for QuantumReservoirConfig
impl Sync for QuantumReservoirConfig
impl Unpin for QuantumReservoirConfig
impl UnwindSafe for QuantumReservoirConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.