| 193 /// Final merging strategy |
193 /// Final merging strategy |
| 194 /// |
194 /// |
| 195 /// Either the string "none", or a radius value for heuristic merging. |
195 /// Either the string "none", or a radius value for heuristic merging. |
| 196 /// Only affects FB, FISTA, and PDPS. |
196 /// Only affects FB, FISTA, and PDPS. |
| 197 final_merging : Option<SpikeMergingMethod<F>>, |
197 final_merging : Option<SpikeMergingMethod<F>>, |
| |
198 |
| |
199 #[arg(long, value_names = &["ε", "θ", "p"])] |
| |
200 /// Set the tolerance to ε_k = ε/(1+θk)^p |
| |
201 tolerance : Option<Vec<F>>, |
| |
202 |
| 198 } |
203 } |
| 199 |
204 |
| 200 /// The entry point for the program. |
205 /// The entry point for the program. |
| 201 pub fn main() { |
206 pub fn main() { |
| 202 let cli = CommandLineArgs::parse(); |
207 let cli = CommandLineArgs::parse(); |