Browse Source

fixed missing virtual keyword

Former-commit-id: 1aa26ab679
tempestpy_adaptions
dehnert 9 years ago
parent
commit
d27c75c3d8
  1. 2
      src/solver/LinearEquationSolver.h

2
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<ValueType>& x, std::vector<ValueType> const* b = nullptr, uint_fast64_t n = 1, std::vector<ValueType>* multiplyResult = nullptr) const;
virtual void performMatrixVectorMultiplication(std::vector<ValueType>& x, std::vector<ValueType> const* b = nullptr, uint_fast64_t n = 1, std::vector<ValueType>* multiplyResult = nullptr) const;
};
template<typename ValueType>

Loading…
Cancel
Save