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 6645cc3 commit a908ba4Copy full SHA for a908ba4
src/sets.jl
@@ -2796,7 +2796,7 @@ struct VectorNonlinearOracle{T} <: AbstractVectorSet
2796
eval_hessian_lagrangian::Union{Nothing,Function} = nothing,
2797
) where {T}
2798
if length(l) != length(u)
2799
- throw(DimenionMismatch())
+ throw(DimensionMismatch())
2800
end
2801
return new{T}(
2802
dimension,
test/General/sets.jl
@@ -421,7 +421,7 @@ end
421
422
function test_VectorNonlinearOracle()
423
@test_throws(
424
- DimenionMismatch,
+ DimensionMismatch,
425
MOI.VectorNonlinearOracle(;
426
dimension = 3,
427
l = [0.0, 0.0, 1.0],
0 commit comments