Developer Notes

Symbols

SymbolTypeDescriptionRemark
qQuadratic{D,L,T}Quadratic polynomial on $\mathbb{R}^D$
DIntegerDimensions of the space $\mathbb{R}^D$
pStaticVector{D}Point in $\mathbb{R}^D$
psVector{<:StaticVector{D}}Points in $\mathbb{R}^D$
fFunction, (Any)Objective on $\mathbb{R}^D$Optimize = minimize in this package
fsVector{<:Real}Objective values on psf.(ps)
ps_initVector{<:StaticVector{D}}Initial points in $\mathbb{R}^D$ps[1:N]
LIntegerNumber of quadratic termsD*(D+1)/2
M, M(D)Integer, FunctionNumber of terms in quadratic polynomialD+L+1
NIntegerNumber of input pointslength(ps_init)
n_iterIntegerNumber of maximum iterationsLast arguments of optimize_qim, optimize_qim!, optimize_qfm, and optimize_qfm!
XAbstractMatrixTemporary matrix to store quadratic termssize(X)==(M,N)
FAbstractVectorTemporary vector to store objective valuessize(F)==(N)