diff --git a/src/storage/SparseMatrix.cpp b/src/storage/SparseMatrix.cpp index bfed8f49c..35f4712d3 100644 --- a/src/storage/SparseMatrix.cpp +++ b/src/storage/SparseMatrix.cpp @@ -1018,6 +1018,11 @@ namespace storm { typename std::pair, std::vector> SparseMatrix::getJacobiDecomposition() const { STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "This operation is not supported."); } + + template<> + typename std::pair, std::vector> SparseMatrix::getJacobiDecomposition() const { + STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "This operation is not supported."); + } #endif template @@ -1143,6 +1148,13 @@ namespace storm { ++currentRow; } } + +#ifdef STORM_HAVE_CARL + template<> + void SparseMatrix::performSuccessiveOverRelaxationStep(Interval omega, std::vector& x, std::vector const& b) const { + STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "This operation is not supported."); + } +#endif template void SparseMatrix::multiplyVectorWithMatrix(std::vector const& vector, std::vector& result) const {