Skip to content

Commit

Permalink
add example global min. (DE) config file with theta23 inequality cons…
Browse files Browse the repository at this point in the history
…traint
  • Loading branch information
thehrh committed Dec 13, 2024
1 parent fb78291 commit c070a6d
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"method": "scipy",
"method_kwargs": {
"global_method": "differential_evolution",
"options": {
"maxiter": 1000,
"tol": 0.1,
"popsize": 10,
"init": "sobol",
"disp": true,
"seed": 0,
"constraints": [
{"type": "ineq",
"fun": "lambda p: p.theta23.m_as('degree') - 45."}
]
}
}
}

0 comments on commit c070a6d

Please sign in to comment.