From 9c4700dc4cf50c3d316892a9756440f281232506 Mon Sep 17 00:00:00 2001 From: Thomas Pfau Date: Wed, 7 Feb 2018 16:26:31 +0100 Subject: [PATCH] MOSEK not available for MILP --- initCobraToolbox.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initCobraToolbox.m b/initCobraToolbox.m index 9a4f06814a..37adf9acda 100644 --- a/initCobraToolbox.m +++ b/initCobraToolbox.m @@ -321,7 +321,7 @@ function initCobraToolbox() SOLVERS.gurobi.type = {'LP', 'MILP', 'QP', 'MIQP'}; SOLVERS.ibm_cplex.type = {'LP', 'MILP', 'QP'}; SOLVERS.matlab.type = {'LP', 'NLP'}; - SOLVERS.mosek.type = {'LP', 'QP', 'MILP'}; + SOLVERS.mosek.type = {'LP', 'QP'}; SOLVERS.pdco.type = {'LP', 'QP'}; SOLVERS.quadMinos.type = {'LP'}; SOLVERS.tomlab_cplex.type = {'LP', 'MILP', 'QP', 'MIQP'};