| 233 /// Enable fitness-based merging for relevant FB-type methods. |
233 /// Enable fitness-based merging for relevant FB-type methods. |
| 234 /// This has worse convergence guarantees that merging based on optimality conditions. |
234 /// This has worse convergence guarantees that merging based on optimality conditions. |
| 235 pub fitness_merging: Option<bool>, |
235 pub fitness_merging: Option<bool>, |
| 236 |
236 |
| 237 #[arg(long)] |
237 #[arg(long)] |
| 238 /// Scaling heuristic factor |
238 /// Scaling heuristic factor. Enables the heuristic if set. |
| 239 pub scaling_heuristic: Option<F>, |
239 pub scaling_heuristic: Option<F>, |
| |
240 |
| |
241 #[arg(long)] |
| |
242 /// Maximum scaling iteration for scaling heuristic. |
| |
243 pub max_scaling_iter: Option<usize>, |
| 240 |
244 |
| 241 #[arg(long)] |
245 #[arg(long)] |
| 242 /// Extra finite dimensional steps to take |
246 /// Extra finite dimensional steps to take |
| 243 pub extra_weight_optimisation_steps: Option<usize>, |
247 pub extra_weight_optimisation_steps: Option<usize>, |
| 244 |
248 |