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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
use crate::error::ParameterBlockStorageError;
use std::pin::Pin;
pub struct ParameterBlock {
values: Pin<Vec<f64>>,
pointer: *mut f64,
lower_bounds: Option<Vec<Option<f64>>>,
upper_bounds: Option<Vec<Option<f64>>>,
}
#[allow(clippy::len_without_is_empty)]
impl ParameterBlock {
pub fn new(values: impl Into<Vec<f64>>) -> Self {
let mut values = Pin::new(values.into());
assert!(!values.is_empty());
let pointer = values.as_mut_ptr();
Self {
values,
pointer,
lower_bounds: None,
upper_bounds: None,
}
}
pub fn with_lower_bounds(&mut self, lower_bounds: impl Into<Vec<Option<f64>>>) -> &mut Self {
let lower_bounds = lower_bounds.into();
assert_eq!(lower_bounds.len(), self.len());
self.lower_bounds = Some(lower_bounds);
self
}
pub fn with_upper_bounds(&mut self, upper_bounds: impl Into<Vec<Option<f64>>>) -> &mut Self {
let upper_bounds = upper_bounds.into();
assert_eq!(upper_bounds.len(), self.len());
self.upper_bounds = Some(upper_bounds);
self
}
pub fn with_all_lower_bounds(&mut self, lower_bounds: impl Into<Vec<f64>>) -> &mut Self {
let lower_bounds = lower_bounds.into();
assert_eq!(lower_bounds.len(), self.len());
self.with_lower_bounds(lower_bounds.into_iter().map(Some).collect::<Vec<_>>())
}
pub fn with_all_upper_bounds(&mut self, upper_bounds: impl Into<Vec<f64>>) -> &mut Self {
let upper_bounds = upper_bounds.into();
assert_eq!(upper_bounds.len(), self.len());
self.with_upper_bounds(upper_bounds.into_iter().map(Some).collect::<Vec<_>>())
}
pub fn len(&self) -> usize {
self.values.len()
}
pub fn lower_bounds(&self) -> Option<&[Option<f64>]> {
self.lower_bounds.as_deref()
}
pub fn upper_bounds(&self) -> Option<&[Option<f64>]> {
self.upper_bounds.as_deref()
}
pub fn values(&self) -> &[f64] {
&self.values
}
pub(crate) fn pointer_mut(&self) -> *mut f64 {
self.pointer
}
pub fn to_values(self) -> Vec<f64> {
Pin::into_inner(self.values)
}
}
impl From<Vec<f64>> for ParameterBlock {
fn from(values: Vec<f64>) -> Self {
Self::new(values)
}
}
pub enum ParameterBlockOrIndex {
Block(ParameterBlock),
Index(usize),
}
impl From<ParameterBlock> for ParameterBlockOrIndex {
fn from(block: ParameterBlock) -> Self {
Self::Block(block)
}
}
impl From<usize> for ParameterBlockOrIndex {
fn from(index: usize) -> Self {
Self::Index(index)
}
}
impl From<Vec<f64>> for ParameterBlockOrIndex {
fn from(values: Vec<f64>) -> Self {
Self::Block(ParameterBlock::new(values))
}
}
pub struct ParameterBlockStorage {
storage: Vec<ParameterBlock>,
}
impl ParameterBlockStorage {
pub fn new() -> Self {
Self {
storage: Vec::new(),
}
}
pub fn extend<P>(
&mut self,
parameter_blocks: impl IntoIterator<Item = P>,
) -> Result<Vec<usize>, ParameterBlockStorageError>
where
P: Into<ParameterBlockOrIndex>,
{
let mut indices = Vec::new();
for parameter_block in parameter_blocks {
let parameter_block = parameter_block.into();
let len = self.storage.len();
match parameter_block {
ParameterBlockOrIndex::Block(block) => {
indices.push(len);
self.storage.push(block);
}
ParameterBlockOrIndex::Index(index) => {
if index >= self.storage.len() {
return Err(ParameterBlockStorageError::IndexOutOfBounds { index, len });
}
indices.push(index);
}
}
}
Ok(indices)
}
#[inline]
pub fn blocks(&self) -> &[ParameterBlock] {
&self.storage
}
pub fn to_values(self) -> Vec<Vec<f64>> {
self.storage.into_iter().map(|p| p.to_values()).collect()
}
}
impl Default for ParameterBlockStorage {
fn default() -> Self {
Self::new()
}
}