From 9fbff3214c128d8b64cd99bc9e6cebae9f08c405 Mon Sep 17 00:00:00 2001 From: Paras Puneet Singh <136245940+ParasPuneetSingh@users.noreply.github.com> Date: Sat, 9 Mar 2024 23:28:54 +0530 Subject: [PATCH] Update alg_traits.jl Removed requiresderivative as it was redundant and replaced by requiresgradient. --- src/alg_traits.jl | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/alg_traits.jl b/src/alg_traits.jl index 5c444ce36..3b308b49a 100644 --- a/src/alg_traits.jl +++ b/src/alg_traits.jl @@ -118,17 +118,6 @@ Defaults to false. """ requiresconstraints(opt) = false -""" -requiresderivative(opt) - -Trait declaration for whether an optimizer -requires derivatives specified in -`cons` in `OptimizationProblem`. - -Defaults to false. -""" -requiresderivative(opt) = false - """ requiresgradient(opt)