Nonlinear Support

DynOptInterface.supports_objective_argumentFunction
supports_objective_argument(
    model::MOI.ModelLike,
    F::Type{<:MOI.AbstractScalarFunction},
    A::Type{<:MOI.AbstractScalarFunction},
)::Bool

Indicate whether model supports objective functions of type F containing one or more arguments of type A.

source
DynOptInterface.supports_constraint_argumentFunction
supports_constraint_argument(
    model::MOI.ModelLike,
    F::Type{<:MOI.AbstractScalarFunction},
    S::Type{<:MOI.AbstractScalarSet},
    A::Type{<:MOI.AbstractScalarFunction},
)::Bool

Indicate whether model supports F-in-S constraints, where the function contains one or more arguments of type A.

source