Skip to content

Commit

Permalink
more choices of linear solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
Huangzizhou committed Oct 10, 2024
1 parent ebf57ed commit 97f18f4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/state-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
}],
"solver": {
"linear": {
"solver": "Eigen::PardisoLLT"
"solver": ["Eigen::PardisoLLT", "Eigen::AccelerateLLT", "Eigen::CholmodSupernodalLLT"]
},
"adjoint_linear": {
"solver": "Eigen::PardisoLLT"
"solver": ["Eigen::PardisoLDLT", "Eigen::AccelerateLDLT", "Eigen::SimplicialLDLT"]
},
"augmented_lagrangian": {
"initial_weight": 1e4,
Expand All @@ -49,7 +49,7 @@
"eta": 0.9,
"nonlinear": {
"advanced": {
"f_delta_step_tol": 5
"f_delta_step_tol": 2
},
"grad_norm": 1e-3,
"max_iterations": 50
Expand All @@ -67,7 +67,8 @@
},
"advanced": {
"f_delta": 1e-13,
"f_delta_step_tol": 10
"f_delta_step_tol": 5,
"derivative_along_delta_x_tol": 1e-18
},
"grad_norm": 1e-6,
"max_iterations": 1000
Expand Down

0 comments on commit 97f18f4

Please sign in to comment.