Browse Source

Try to fix LTO issue by adding virtual destructor

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
3beff87636
  1. 3
      src/storm/solver/TopologicalMinMaxLinearEquationSolver.h

3
src/storm/solver/TopologicalMinMaxLinearEquationSolver.h

@ -18,6 +18,9 @@ namespace storm {
TopologicalMinMaxLinearEquationSolver(storm::storage::SparseMatrix<ValueType> const& A);
TopologicalMinMaxLinearEquationSolver(storm::storage::SparseMatrix<ValueType>&& A);
virtual ~TopologicalMinMaxLinearEquationSolver() {
}
virtual void clearCache() const override;
virtual MinMaxLinearEquationSolverRequirements getRequirements(Environment const& env, boost::optional<storm::solver::OptimizationDirection> const& direction = boost::none, bool const& hasInitialScheduler = false) const override ;

Loading…
Cancel
Save