From 0f4e51e6465c249d1a7494f6d6a34c56700e097d Mon Sep 17 00:00:00 2001 From: dehnert Date: Tue, 24 Sep 2013 10:26:45 +0200 Subject: [PATCH] Changed notation to query option slightly. Former-commit-id: 993a053306ff85ac64f9a1809c4c8aa2f8329ecb --- src/counterexamples/MinimalLabelSetGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/counterexamples/MinimalLabelSetGenerator.h b/src/counterexamples/MinimalLabelSetGenerator.h index e843ee69c..35e803625 100644 --- a/src/counterexamples/MinimalLabelSetGenerator.h +++ b/src/counterexamples/MinimalLabelSetGenerator.h @@ -165,7 +165,7 @@ namespace storm { * @param env The Gurobi environment to modify. */ static void setGurobiEnvironmentProperties(GRBenv* env) { - int error = error = GRBsetintparam(env, "OutputFlag", storm::settings::Settings::getInstance()->getOptionByLongName("debug").getHasOptionBeenSet() ? 1 : 0); + int error = error = GRBsetintparam(env, "OutputFlag", storm::settings::Settings::getInstance()->isSet("debug") ? 1 : 0); } /*!