Browse Source

Small fix on Eigen-based model checker to make it compile with clang.

tempestpy_adaptions
dehnert 12 years ago
parent
commit
be182293ee
  1. 2
      src/modelChecker/EigenDtmcPrctlModelChecker.h

2
src/modelChecker/EigenDtmcPrctlModelChecker.h

@ -155,7 +155,7 @@ public:
submatrix->convertToEquationSystem();
// Transform the submatric matrix to the eigen format to use its solvers
Eigen::SparseMatrix<Type, 1, int_fast32_t>* eigenSubMatrix = storm::adapters::EigenAdapter::toEigenSparseMatrix(submatrix);
Eigen::SparseMatrix<Type, 1, int_fast32_t>* eigenSubMatrix = storm::adapters::EigenAdapter::toEigenSparseMatrix<Type>(submatrix);
delete submatrix;
// Initialize the x vector with 0.5 for each element. This is the initial guess for

Loading…
Cancel
Save