From aa72d8a158883d2362173f99e036308a151ec3fb Mon Sep 17 00:00:00 2001 From: sjunges Date: Wed, 17 Feb 2016 20:46:19 +0100 Subject: [PATCH] added missing instantiation of sparse matrix with carl ratnumber Former-commit-id: c080e9b4a513d376b4bc1a5559b5ef93eee78179 --- src/storage/SparseMatrix.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/storage/SparseMatrix.cpp b/src/storage/SparseMatrix.cpp index 65f74d874..d41e2ef2c 100644 --- a/src/storage/SparseMatrix.cpp +++ b/src/storage/SparseMatrix.cpp @@ -1257,6 +1257,15 @@ namespace storm { template bool SparseMatrix::isSubmatrixOf(SparseMatrix const& matrix) const; #ifdef STORM_HAVE_CARL + // Rat Function + template class MatrixEntry::index_type, CarlRationalNumber>; + template std::ostream& operator<<(std::ostream& out, MatrixEntry const& entry); + template class SparseMatrixBuilder; + template class SparseMatrix; + template std::ostream& operator<<(std::ostream& out, SparseMatrix const& matrix); + template std::vector SparseMatrix::getPointwiseProductRowSumVector(storm::storage::SparseMatrix const& otherMatrix) const; + template bool SparseMatrix::isSubmatrixOf(SparseMatrix const& matrix) const; + // Rat Function template class MatrixEntry::index_type, RationalFunction>; template std::ostream& operator<<(std::ostream& out, MatrixEntry const& entry);