From 6791cda6b94d669c5b246af91dca4c10eb6c253f Mon Sep 17 00:00:00 2001 From: Vaibhav Kumar Dixit Date: Tue, 19 Dec 2023 23:04:18 -0500 Subject: [PATCH] Update basic_problems.jl --- src/problems/basic_problems.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problems/basic_problems.jl b/src/problems/basic_problems.jl index 11a300300..0b61cdea3 100644 --- a/src/problems/basic_problems.jl +++ b/src/problems/basic_problems.jl @@ -611,7 +611,7 @@ optimization and if they are set to be equal then it represents an equality cons They should be an `AbstractArray` matching the geometry of `u`, where `(lcons[i],ucons[i])` are the lower and upper bounds for `cons[i]`. -The `f` in the `OptimizationProblem` should typically be an instance of [`OptimizationFunction`](@ref) +The `f` in the `OptimizationProblem` should typically be an instance of [`OptimizationFunction`](https://docs.sciml.ai/Optimization/stable/API/optimization_function/#optfunction) to specify the objective function and its derivatives either by passing predefined functions for them or automatically generated using the [ADType](https://github.com/SciML/ADTypes.jl).