File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed
docs/sections/api/specfem/optimization Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ namespace specfem {
1717 * interface.
1818 *
1919 *
20+ *
2021 */
2122namespace optimization {
2223
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ namespace optimization {
1515/* *
1616 * @brief Tag for Nelder-Mead simplex algorithm
1717 *
18+ *
1819 * Derivative-free method suitable for non-smooth objective functions.
1920 * Converges slowly but robustly for problems with few variables (N < 10).
2021 *
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ struct SteepestDescent {};
3939 * Controls convergence criteria and step size parameters.
4040 * Uses backtracking line search with Armijo condition.
4141 *
42+ *
4243 * @tparam N Number of optimization variables
4344 */
4445template <int N> struct SteepestDescentOptions {
@@ -61,7 +62,6 @@ template <int N> struct SteepestDescentOptions {
6162 type_real grad_epsilon = std::sqrt(
6263 std::numeric_limits<type_real>::epsilon()); // /< Finite difference step
6364 // /< size
64-
6565};
6666
6767// ============================================================================
Original file line number Diff line number Diff line change 1414
1515
1616
17+
1718Algorithms
1819----------
1920
You can’t perform that action at this time.
0 commit comments