Nonlinear Support
DynOptInterface.supports_objective_argument — Functionsupports_objective_argument(
model::MOI.ModelLike,
F::Type{<:MOI.AbstractScalarFunction},
A::Type{<:MOI.AbstractScalarFunction},
)::BoolIndicate whether model supports objective functions of type F containing one or more arguments of type A.
DynOptInterface.UnsupportedObjectiveArgument — TypeUnsupportedObjectiveArgument{F,A}(message::String)An error indicating that supports_objective_argument returns false.
The String error message is stored in the message field.
DynOptInterface.supports_constraint_argument — Functionsupports_constraint_argument(
model::MOI.ModelLike,
F::Type{<:MOI.AbstractScalarFunction},
S::Type{<:MOI.AbstractScalarSet},
A::Type{<:MOI.AbstractScalarFunction},
)::BoolIndicate whether model supports F-in-S constraints, where the function contains one or more arguments of type A.
DynOptInterface.UnsupportedConstraintArgument — TypeUnsupportedConstraintArgument{F,S,A}(message::String)An error indicating that supports_constraint_argument returns false.
The String error message is stored in the message field.