File tree Expand file tree Collapse file tree 2 files changed +73
-5
lines changed
lib/OptimizationNLPModels/src Expand file tree Collapse file tree 2 files changed +73
-5
lines changed Original file line number Diff line number Diff line change 11[default .extend-words ]
2- AGS = " AGS"
3- # Additional SciML terms
2+ # Julia-specific functions
3+ indexin = " indexin"
4+ findfirst = " findfirst"
5+ findlast = " findlast"
6+ eachindex = " eachindex"
47setp = " setp"
58getp = " getp"
6- indexin = " indexin"
9+ setu = " setu"
10+ getu = " getu"
11+
12+ # Mathematical/scientific terms
13+ jacobian = " jacobian"
14+ hessian = " hessian"
15+ eigenvalue = " eigenvalue"
16+ eigenvector = " eigenvector"
17+ discretization = " discretization"
18+ linearization = " linearization"
19+ parameterized = " parameterized"
20+ discretized = " discretized"
21+ vectorized = " vectorized"
22+
23+ # Common variable patterns in Julia/SciML
724ists = " ists"
825ispcs = " ispcs"
26+ osys = " osys"
27+ rsys = " rsys"
28+ usys = " usys"
29+ fsys = " fsys"
930eqs = " eqs"
1031rhs = " rhs"
11- MTK = " MTK"
32+ lhs = " lhs"
33+ ode = " ode"
34+ pde = " pde"
35+ sde = " sde"
36+ dde = " dde"
37+ bvp = " bvp"
38+ ivp = " ivp"
39+
40+ # Common abbreviations
41+ tol = " tol"
42+ rtol = " rtol"
43+ atol = " atol"
44+ idx = " idx"
45+ jdx = " jdx"
46+ prev = " prev"
47+ curr = " curr"
48+ init = " init"
49+ tmp = " tmp"
50+ vec = " vec"
51+ arr = " arr"
52+ dt = " dt"
53+ du = " du"
54+ dx = " dx"
55+ dy = " dy"
56+ dz = " dz"
57+
58+ # Algorithm/type suffixes
59+ alg = " alg"
60+ prob = " prob"
61+ sol = " sol"
62+ cb = " cb"
63+ opts = " opts"
64+ args = " args"
65+ kwargs = " kwargs"
66+
67+ # Scientific abbreviations
68+ ND = " ND"
69+ nd = " nd"
70+ MTK = " MTK"
71+ ODE = " ODE"
72+ PDE = " PDE"
73+ SDE = " SDE"
74+
75+ # Optimization specific terms
76+ TikTak = " TikTak" # Legitimate algorithm name in MultistartOptimization
77+ Tak = " Tak" # Part of TikTak algorithm name
78+ opf = " opf" # Optimal Power Flow abbreviation
79+ AGS = " AGS" # Legitimate NLopt algorithm name
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ using Reexport
77 OptimizationFunction(nlpmodel::AbstractNLPModel, adtype::AbstractADType = NoAD())
88
99Returns an `OptimizationFunction` from the `NLPModel` defined in `nlpmodel` where the
10- available derivates are re-used from the model, and the rest are populated with the
10+ available derivatives are re-used from the model, and the rest are populated with the
1111Automatic Differentiation backend specified by `adtype`.
1212"""
1313function SciMLBase. OptimizationFunction (nlpmodel:: AbstractNLPModel ,
You can’t perform that action at this time.
0 commit comments