Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Oct 27, 2024
1 parent 50f57b2 commit bf0def3
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions test/MOI_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,29 +101,26 @@ function test_uno_runtests()
MOI.VariableBasisStatus,
MOI.ConstraintBasisStatus,
MOI.ObjectiveBound,
# Bug: Uno returns incorrect duals, and does not support
# variable duals.
MOI.ConstraintDual,
],
),
);
exclude = [
# OTHER_LIMIT instead of LOCALLY_SOLVED
"test_conic_linear_VectorOfVariables_2",
"test_nonlinear_expression_hs109",
"test_quadratic_constraint_GreaterThan",
"test_quadratic_constraint_LessThan",
r"^test_conic_linear_VectorOfVariables_2$",
r"^test_nonlinear_expression_hs109$",
r"^test_quadratic_constraint_GreaterThan$",
r"^test_quadratic_constraint_LessThan$",
# OTHER_ERROR instead of LOCALLY_SOLVED
"test_linear_integration",
"test_linear_transform",
r"^test_linear_integration$",
r"^test_linear_transform$",
# OTHER_LIMIT instead of DUAL_INFEASIBLE
"test_solve_TerminationStatus_DUAL_INFEASIBLE",
r"^test_solve_TerminationStatus_DUAL_INFEASIBLE$",
# OTHER_LIMIT instead of LOCALLY_INFEASIBLE
"test_conic_NormInfinityCone_INFEASIBLE",
"test_conic_NormOneCone_INFEASIBLE",
"test_conic_linear_INFEASIBLE",
"test_linear_INFEASIBLE",
r"^test_conic_NormInfinityCone_INFEASIBLE$",
r"^test_conic_NormOneCone_INFEASIBLE$",
r"^test_conic_linear_INFEASIBLE$",
r"^test_linear_INFEASIBLE$",
# TODO(odow): implement
"test_attribute_SolverVersion",
r"^test_attribute_SolverVersion$",
# Uno does not support integrality
"Indicator",
r"[Ii]nteger",
Expand All @@ -132,10 +129,10 @@ function test_uno_runtests()
"SOS1",
"SOS2",
"ZeroOne",
"test_cpsat_",
r"^test_cpsat_",
# Existing MOI issues
"test_nonlinear_invalid",
"test_basic_VectorNonlinearFunction_",
r"^test_nonlinear_invalid$",
r"^test_basic_VectorNonlinearFunction_",
],
)
return
Expand Down

0 comments on commit bf0def3

Please sign in to comment.