From f7c803827b5d6d8870b5fd28b0a7afedd4972897 Mon Sep 17 00:00:00 2001 From: dehnert Date: Wed, 30 Aug 2017 21:00:15 +0200 Subject: [PATCH] remove debug output --- resources/3rdparty/sylvan/src/storm_wrapper.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/3rdparty/sylvan/src/storm_wrapper.cpp b/resources/3rdparty/sylvan/src/storm_wrapper.cpp index 09fb51ccf..fb92720d0 100644 --- a/resources/3rdparty/sylvan/src/storm_wrapper.cpp +++ b/resources/3rdparty/sylvan/src/storm_wrapper.cpp @@ -125,8 +125,6 @@ int storm_rational_number_is_zero(storm_rational_number_ptr a) { std::lock_guard lock(rationalNumberMutex); #endif - std::cout << "got ptr for eq check " << a << std::endl; - return storm::utility::isZero(*(storm::RationalNumber const*)a) ? 1 : 0; }