From 8838643f9839d879ab34f0115042328191a05d68 Mon Sep 17 00:00:00 2001 From: Tim Quatmann Date: Tue, 16 Jul 2019 14:27:15 +0200 Subject: [PATCH] NativePolytope: Silencing a STORM_LOG_WARN in release mode --- src/storm/storage/geometry/NativePolytope.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/storage/geometry/NativePolytope.cpp b/src/storm/storage/geometry/NativePolytope.cpp index f90fadb73..0000349f3 100644 --- a/src/storm/storage/geometry/NativePolytope.cpp +++ b/src/storm/storage/geometry/NativePolytope.cpp @@ -228,7 +228,7 @@ namespace storm { return std::make_shared>(std::vector>()); } - STORM_LOG_WARN("Implementation of convex union of two polytopes only works if the polytopes are bounded. This is not checked."); + STORM_LOG_WARN_COND_DEBUG(false, "Implementation of convex union of two polytopes only works if the polytopes are bounded. This is not checked."); std::vector rhsVertices = dynamic_cast const&>(*rhs).getEigenVertices(); std::vector resultVertices = this->getEigenVertices();