From d27c75c3d833b339df74eb7412943a8ed255a76c Mon Sep 17 00:00:00 2001 From: dehnert Date: Mon, 27 Jun 2016 19:15:21 +0200 Subject: [PATCH] fixed missing virtual keyword Former-commit-id: 1aa26ab679482b60fe9fb22c5cb81918dd2fe0b6 --- src/solver/LinearEquationSolver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solver/LinearEquationSolver.h b/src/solver/LinearEquationSolver.h index e12fa6eb5..a6755872e 100644 --- a/src/solver/LinearEquationSolver.h +++ b/src/solver/LinearEquationSolver.h @@ -58,7 +58,7 @@ namespace storm { * @param multiplyResult If non-null, this memory is used as a scratch memory. If given, the length of this * vector must be equal to the number of rows of A. */ - void performMatrixVectorMultiplication(std::vector& x, std::vector const* b = nullptr, uint_fast64_t n = 1, std::vector* multiplyResult = nullptr) const; + virtual void performMatrixVectorMultiplication(std::vector& x, std::vector const* b = nullptr, uint_fast64_t n = 1, std::vector* multiplyResult = nullptr) const; }; template