You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/md/opti/mod.rs
+4-4
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,16 @@
19
19
// pub mod convert_impulsive;
20
20
pubmod multipleshooting;
21
21
pubuse multipleshooting::{ctrlnodes, multishoot};
22
-
/// Uses a Levenberg Marquardt minimizer to solve the damped least squares problem.
23
-
// #[cfg(feature = "broken-donotuse")]
24
-
// pub mod minimize_lm;
25
-
pubmod optimizer;
26
22
/// Uses a [Newton Raphson](https://en.wikipedia.org/wiki/Newton%27s_method_in_optimization) method where the Jacobian is computed via finite differencing.
27
23
pubmod raphson_finite_diff;
28
24
/// Uses a [Newton Raphson](https://en.wikipedia.org/wiki/Newton%27s_method_in_optimization) method where the Jacobian is computed via hyperdual numbers.
29
25
pubmod raphson_hyperdual;
30
26
pubmod solution;
31
27
pubmod target_variable;
28
+
/// Uses a Levenberg Marquardt minimizer to solve the damped least squares problem.
0 commit comments