We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d48893b commit 2816fdeCopy full SHA for 2816fde
lib/OptimizationPRIMA/test/runtests.jl
@@ -16,9 +16,8 @@ using Test
16
@test 10 * sol.objective < l1
17
sol = OptimizationBase.solve(prob, LINCOA(), maxiters = 1000)
18
19
- @test_throws SciMLBase.IncompatibleOptimizerError OptimizationBase.solve(prob,
20
- COBYLA(),
21
- maxiters = 1000)
+ @test_throws OptimizationBase.IncompatibleOptimizerError OptimizationBase.solve(
+ prob, COBYLA(), maxiters = 1000)
22
23
function con2_c(res, x, p)
24
res .= [x[1] + x[2], x[2] * sin(x[1]) - x[1]]
0 commit comments