#include #include "storm/environment/solver/SolverEnvironment.h" #include "storm/environment/solver/EigenSolverEnvironment.h" #include "storm/environment/solver/GmmxxSolverEnvironment.h" #include "storm/environment/solver/NativeSolverEnvironment.h" #include "storm/environment/solver/MinMaxSolverEnvironment.h" #include "storm/environment/solver/MultiplierEnvironment.h" #include "storm/environment/solver/GameSolverEnvironment.h" #include "storm/environment/solver/TopologicalSolverEnvironment.h" namespace storm { template SubEnvironment::SubEnvironment() : subEnv(std::make_unique()) { // Intentionally left empty } template SubEnvironment::SubEnvironment(SubEnvironment const& other) : subEnv(new EnvironmentType(*other.subEnv)) { // Intentionally left empty } template SubEnvironment& SubEnvironment::operator=(SubEnvironment const& other) { subEnv = std::make_unique(*other.subEnv); return *this; } template EnvironmentType const& SubEnvironment::get() const { return *subEnv; } template EnvironmentType& SubEnvironment::get() { return *subEnv; } template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; template class SubEnvironment; }