(&mut self, floats: Vec<f32>)
| 164 | } |
| 165 | |
| 166 | pub fn append_float_vars(&mut self, floats: Vec<f32>) { |
| 167 | for f in floats { |
| 168 | self.append_float_var(f); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | pub fn append_float_array(&mut self, floats: Vec<f32>) { |
| 173 | let var = format!( |
no test coverage detected