Browse Source

minor: sparse matrix support for parametric systems now depends on parametric systems flag

Former-commit-id: 20fe67fde5
tempestpy_adaptions
sjunges 11 years ago
parent
commit
58473c2e30
  1. 2
      src/storage/SparseMatrix.cpp

2
src/storage/SparseMatrix.cpp

@ -932,7 +932,7 @@ namespace storm {
template class SparseMatrixBuilder<int>;
template class SparseMatrix<int>;
template std::ostream& operator<<(std::ostream& out, SparseMatrix<int> const& matrix);
#ifdef STORM_HAVE_CARL
#ifdef PARAMETRIC_SYSTEMS
template class SparseMatrixBuilder<Polynomial>;
template class SparseMatrix<Polynomial>;
template std::ostream& operator<<(std::ostream& out, SparseMatrix<Polynomial> const& matrix);

Loading…
Cancel
Save