#ifndef STORM_UTILITY_SOLVER_H_ #define STORM_UTILITY_SOLVER_H_ #include "src/solver/LinearEquationSolver.h" #include "src/solver/NondeterministicLinearEquationSolver.h" #include "src/solver/LpSolver.h" #include "src/exceptions/InvalidSettingsException.h" namespace storm { namespace utility { namespace solver { std::shared_ptr getLpSolver(std::string const& name); template std::shared_ptr> getLinearEquationSolver(); template std::shared_ptr> getNondeterministicLinearEquationSolver(); } } } #endif /* STORM_UTILITY_SOLVER_H_ */