Skip to content

Commit 4c9bdb3

Browse files
committed
Fix utils.jl
1 parent 9c79422 commit 4c9bdb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ function parser_MOI(moimodel, index_map, nvar)
380380

381381
contypes = MOI.get(moimodel, MOI.ListOfConstraintTypesPresent())
382382
for (F, S) in contypes
383-
F <: AF || F <: QF || F == NF || F == VI || error("Function $F is not supported.")
383+
F <: AF || F <: QF || F <: NF || F == VI || error("Function $F is not supported.")
384384
S <: LS || error("Set $S is not supported.")
385385

386386
conindices = MOI.get(moimodel, MOI.ListOfConstraintIndices{F, S}())

0 commit comments

Comments
 (0)