src/main.rs

changeset 20
90f77ad9a98d
parent 9
21b0e537ac0e
child 24
d29d1fcf5423
equal deleted inserted replaced
17:de8d43ebfd0d 20:90f77ad9a98d
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();

mercurial