From 41bc2c0de44393fbe7708ac6fc4a24fe8c665c79 Mon Sep 17 00:00:00 2001 From: dehnert Date: Tue, 31 Oct 2017 12:46:02 +0100 Subject: [PATCH] explicit instantiations to make gcc hapy --- src/storm/utility/KwekMehlhorn.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/storm/utility/KwekMehlhorn.cpp b/src/storm/utility/KwekMehlhorn.cpp index 985f12789..ec81a3357 100644 --- a/src/storm/utility/KwekMehlhorn.cpp +++ b/src/storm/utility/KwekMehlhorn.cpp @@ -73,6 +73,9 @@ namespace storm { } } + template storm::RationalNumber sharpen(uint64_t precision, double const& input); + template storm::RationalNumber sharpen(uint64_t precision, storm::RationalNumber const& input); + template void sharpen(uint64_t precision, std::vector const& input, std::vector& output); template void sharpen(uint64_t precision, std::vector const& input, std::vector& output);