diff --git a/src/storm/models/symbolic/Model.cpp b/src/storm/models/symbolic/Model.cpp index e88895560..703686ea6 100644 --- a/src/storm/models/symbolic/Model.cpp +++ b/src/storm/models/symbolic/Model.cpp @@ -13,6 +13,8 @@ #include "storm/models/symbolic/StandardRewardModel.h" +#include "storm/utility/dd.h" + #include "storm-config.h" #include "storm/adapters/CarlAdapter.h" @@ -146,12 +148,7 @@ namespace storm { template storm::dd::Add Model::getRowColumnIdentity() const { - storm::dd::Add result = this->getManager().template getAddOne(); - for (auto const& pair : this->getRowColumnMetaVariablePairs()) { - result *= this->getManager().template getIdentity(pair.first).equals(this->getManager().template getIdentity(pair.second)).template toAdd(); - result *= this->getManager().getRange(pair.first).template toAdd() * this->getManager().getRange(pair.second).template toAdd(); - } - return result; + return storm::utility::dd::getRowColumnDiagonal(this->getManager(), this->getRowColumnMetaVariablePairs()); } template diff --git a/src/storm/solver/EliminationLinearEquationSolver.cpp b/src/storm/solver/EliminationLinearEquationSolver.cpp index 509b454b1..4fd658294 100644 --- a/src/storm/solver/EliminationLinearEquationSolver.cpp +++ b/src/storm/solver/EliminationLinearEquationSolver.cpp @@ -109,7 +109,7 @@ namespace storm { // After having solved the system, we need to revert the transition system if we kept it local. if (localA) { localA->convertToEquationSystem(); - }; + } return true; } diff --git a/src/storm/solver/SymbolicEliminationLinearEquationSolver.cpp b/src/storm/solver/SymbolicEliminationLinearEquationSolver.cpp new file mode 100644 index 000000000..5505b185e --- /dev/null +++ b/src/storm/solver/SymbolicEliminationLinearEquationSolver.cpp @@ -0,0 +1,64 @@ +#include "storm/solver/SymbolicEliminationLinearEquationSolver.h" + +#include "storm/storage/dd/DdManager.h" +#include "storm/storage/dd/Add.h" + +#include "storm/utility/dd.h" + +namespace storm { + namespace solver { + + template + SymbolicEliminationLinearEquationSolver::SymbolicEliminationLinearEquationSolver(storm::dd::Add const& A, storm::dd::Bdd const& allRows, std::set const& rowMetaVariables, std::set const& columnMetaVariables, std::vector> const& rowColumnMetaVariablePairs) : SymbolicLinearEquationSolver(A, allRows, rowMetaVariables, columnMetaVariables, rowColumnMetaVariablePairs) { + // Intentionally left empty. + } + + template + SymbolicEliminationLinearEquationSolver::SymbolicEliminationLinearEquationSolver(storm::dd::Add const& A, storm::dd::Bdd const& allRows, std::set const& rowMetaVariables, std::set const& columnMetaVariables, std::vector> const& rowColumnMetaVariablePairs, double precision, uint_fast64_t maximalNumberOfIterations, bool relative) : SymbolicLinearEquationSolver(A, allRows, rowMetaVariables, columnMetaVariables, rowColumnMetaVariablePairs, precision, maximalNumberOfIterations, relative) { + // Intentionally left empty. + } + + template + storm::dd::Add SymbolicEliminationLinearEquationSolver::solveEquations(storm::dd::Add const& x, storm::dd::Add const& b) const { + storm::dd::Bdd diagonal = storm::utility::dd::getRowColumnDiagonal(x.getDdManager(), this->rowColumnMetaVariablePairs); + diagonal &= this->allRows; + + storm::dd::Add rowsAdd = this->allRows.template toAdd(); + storm::dd::Add diagonalAdd = diagonal.template toAdd(); + + // Revert the conversion to an equation system. + storm::dd::Add matrix = diagonalAdd - this->A; + + storm::dd::Add solution = b; + + // As long as there are transitions, we eliminate them. + while (!matrix.isZero()) { + // Determine inverse loop probabilies + storm::dd::Add inverseLoopProbabilities = rowsAdd / (rowsAdd - (diagonalAdd * matrix).sumAbstract(this->columnMetaVariables)); + + inverseLoopProbabilities.swapVariables(this->rowColumnMetaVariablePairs); + + // Scale all transitions with the inverse loop probabilities. + matrix *= inverseLoopProbabilities; + + // Delete diagonal elements, i.e. remove self-loops. + matrix = diagonal.ite(x.getDdManager().template getAddZero(), matrix); + + // Update the one-step probabilities. + solution += (matrix * solution.swapVariables(this->rowColumnMetaVariablePairs)).sumAbstract(this->columnMetaVariables); + + // Now eliminate all direct transitions of all states. + storm::dd::Add matrixWithRemoved; + } + + std::cout << "here" << std::endl; + solution.exportToDot("solution.dot"); + + exit(-1); + } + + template class SymbolicEliminationLinearEquationSolver; + template class SymbolicEliminationLinearEquationSolver; + + } +} diff --git a/src/storm/solver/SymbolicLinearEquationSolver.cpp b/src/storm/solver/SymbolicLinearEquationSolver.cpp index 0a77e2b34..85efc4cd9 100644 --- a/src/storm/solver/SymbolicLinearEquationSolver.cpp +++ b/src/storm/solver/SymbolicLinearEquationSolver.cpp @@ -3,6 +3,8 @@ #include "storm/storage/dd/DdManager.h" #include "storm/storage/dd/Add.h" +#include "storm/utility/dd.h" + #include "storm/settings/SettingsManager.h" #include "storm/settings/modules/NativeEquationSolverSettings.h" @@ -28,11 +30,7 @@ namespace storm { template storm::dd::Add SymbolicLinearEquationSolver::solveEquations(storm::dd::Add const& x, storm::dd::Add const& b) const { // Start by computing the Jacobi decomposition of the matrix A. - storm::dd::Bdd diagonal = x.getDdManager().getBddOne(); - for (auto const& pair : rowColumnMetaVariablePairs) { - diagonal &= x.getDdManager().template getIdentity(pair.first).equals(x.getDdManager().template getIdentity(pair.second)); - diagonal &= x.getDdManager().getRange(pair.first) && x.getDdManager().getRange(pair.second); - } + storm::dd::Bdd diagonal = storm::utility::dd::getRowColumnDiagonal(x.getDdManager(), rowColumnMetaVariablePairs); diagonal &= allRows; storm::dd::Add lu = diagonal.ite(this->A.getDdManager().template getAddZero(), this->A); diff --git a/src/storm/solver/SymbolicLinearEquationSolver.h b/src/storm/solver/SymbolicLinearEquationSolver.h index 13686d3f4..0026a3318 100644 --- a/src/storm/solver/SymbolicLinearEquationSolver.h +++ b/src/storm/solver/SymbolicLinearEquationSolver.h @@ -1,15 +1,12 @@ #ifndef STORM_SOLVER_SYMBOLICLINEAREQUATIONSOLVER_H_ #define STORM_SOLVER_SYMBOLICLINEAREQUATIONSOLVER_H_ -#include #include #include -#include #include "storm/storage/expressions/Variable.h" #include "storm/storage/dd/DdType.h" - namespace storm { namespace dd { template diff --git a/src/storm/storage/dd/Dd.cpp b/src/storm/storage/dd/Dd.cpp index 3cf7e5f98..f0619c633 100644 --- a/src/storm/storage/dd/Dd.cpp +++ b/src/storm/storage/dd/Dd.cpp @@ -10,7 +10,7 @@ namespace storm { namespace dd { template - Dd::Dd(DdManager const& ddManager, std::set const& containedMetaVariables) : ddManager(&ddManager), containedMetaVariables(containedMetaVariables) { + Dd::Dd(DdManager const& ddManager, std::set const& containedMetaVariables) : ddManager(const_cast*>(&ddManager)), containedMetaVariables(containedMetaVariables) { // Intentionally left empty. } @@ -35,7 +35,7 @@ namespace storm { } template - DdManager const& Dd::getDdManager() const { + DdManager& Dd::getDdManager() const { return *this->ddManager; } diff --git a/src/storm/storage/dd/Dd.h b/src/storm/storage/dd/Dd.h index d4dd8e813..765416bfe 100644 --- a/src/storm/storage/dd/Dd.h +++ b/src/storm/storage/dd/Dd.h @@ -109,7 +109,7 @@ namespace storm { * * A pointer to the manager that is responsible for this DD. */ - DdManager const& getDdManager() const; + DdManager& getDdManager() const; /*! * Retrieves the set of all meta variables contained in the DD. @@ -182,7 +182,7 @@ namespace storm { private: // A pointer to the manager responsible for this DD. - DdManager const* ddManager; + DdManager* ddManager; // The meta variables that appear in this DD. std::set containedMetaVariables; diff --git a/src/storm/storage/dd/DdManager.cpp b/src/storm/storage/dd/DdManager.cpp index 9cca07b06..0600ba1c3 100644 --- a/src/storm/storage/dd/DdManager.cpp +++ b/src/storm/storage/dd/DdManager.cpp @@ -126,6 +126,15 @@ namespace storm { template std::pair DdManager::addMetaVariable(std::string const& name, int_fast64_t low, int_fast64_t high, boost::optional> const& position) { + std::vector result = addMetaVariable(name, low, high, 2, position); + return std::make_pair(result[0], result[1]); + } + + template + std::vector DdManager::addMetaVariable(std::string const& name, int_fast64_t low, int_fast64_t high, uint64_t numberOfLayers, boost::optional> const& position) { + // Check whether number of layers is legal. + STORM_LOG_THROW(numberOfLayers >= 1, storm::exceptions::InvalidArgumentException, "Layers must be at least 1."); + // Check whether the variable name is legal. STORM_LOG_THROW(name != "" && name.back() != '\'', storm::exceptions::InvalidArgumentException, "Illegal name of meta variable: '" << name << "'."); @@ -155,31 +164,48 @@ namespace storm { ++numberOfBits; } - storm::expressions::Variable unprimed = manager->declareBitVectorVariable(name, numberOfBits); - storm::expressions::Variable primed = manager->declareBitVectorVariable(name + "'", numberOfBits); + std::stringstream tmp1; + std::vector result; + for (uint64 layer = 0; layer < numberOfLayers; ++layer) { + result.emplace_back(manager->declareBitVectorVariable(name + tmp1.str(), numberOfBits)); + tmp1 << "'"; + } + + std::vector>> variables(numberOfLayers); - std::vector> variables; - std::vector> variablesPrime; for (std::size_t i = 0; i < numberOfBits; ++i) { - auto ddVariablePair = internalDdManager.createNewDdVariablePair(level); - variables.emplace_back(Bdd(*this, ddVariablePair.first, {unprimed})); - variablesPrime.emplace_back(Bdd(*this, ddVariablePair.second, {primed})); + std::vector> ddVariables = internalDdManager.createDdVariables(numberOfLayers, level); + for (uint64 layer = 0; layer < numberOfLayers; ++layer) { + variables[layer].emplace_back(Bdd(*this, ddVariables[layer], {result[layer]})); + } // If we are inserting the variable at a specific level, we need to prepare the level for the next pair // of variables. if (level) { - level.get() += 2; + level.get() += numberOfLayers; } } - - metaVariableMap.emplace(unprimed, DdMetaVariable(name, low, high, variables)); - metaVariableMap.emplace(primed, DdMetaVariable(name + "'", low, high, variablesPrime)); - return std::make_pair(unprimed, primed); + std::stringstream tmp2; + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + metaVariableMap.emplace(result[layer], DdMetaVariable(name + tmp2.str(), low, high, variables[layer])); + tmp2 << "'"; + } + + return result; } template std::pair DdManager::addMetaVariable(std::string const& name, boost::optional> const& position) { + std::vector result = addMetaVariable(name, 2, position); + return std::make_pair(result[0], result[1]); + } + + template + std::vector DdManager::addMetaVariable(std::string const& name, uint64_t numberOfLayers, boost::optional> const& position) { + // Check whether number of layers is legal. + STORM_LOG_THROW(numberOfLayers >= 1, storm::exceptions::InvalidArgumentException, "Layers must be at least 1."); + // Check whether the variable name is legal. STORM_LOG_THROW(name != "" && name.back() != '\'', storm::exceptions::InvalidArgumentException, "Illegal name of meta variable: '" << name << "'."); @@ -200,19 +226,28 @@ namespace storm { } } - storm::expressions::Variable unprimed = manager->declareBooleanVariable(name); - storm::expressions::Variable primed = manager->declareBooleanVariable(name + "'"); + std::stringstream tmp1; + std::vector result; + for (uint64 layer = 0; layer < numberOfLayers; ++layer) { + result.emplace_back(manager->declareBooleanVariable(name + tmp1.str())); + tmp1 << "'"; + } - std::vector> variables; - std::vector> variablesPrime; - auto ddVariablePair = internalDdManager.createNewDdVariablePair(level); - variables.emplace_back(Bdd(*this, ddVariablePair.first, {unprimed})); - variablesPrime.emplace_back(Bdd(*this, ddVariablePair.second, {primed})); + std::vector>> variables(numberOfLayers); - metaVariableMap.emplace(unprimed, DdMetaVariable(name, variables)); - metaVariableMap.emplace(primed, DdMetaVariable(name + "'", variablesPrime)); + std::vector> ddVariables = internalDdManager.createDdVariables(numberOfLayers, level); - return std::make_pair(unprimed, primed); + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + variables[layer].emplace_back(Bdd(*this, ddVariables[layer], {result[layer]})); + } + + std::stringstream tmp2; + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + metaVariableMap.emplace(result[layer], DdMetaVariable(name + tmp2.str(), variables[layer])); + tmp2 << "'"; + } + + return result; } template diff --git a/src/storm/storage/dd/DdManager.h b/src/storm/storage/dd/DdManager.h index 7baffbcb8..24e737ee0 100644 --- a/src/storm/storage/dd/DdManager.h +++ b/src/storm/storage/dd/DdManager.h @@ -135,21 +135,37 @@ namespace storm { Bdd getCube(std::set const& variables) const; /*! - * Adds an integer meta variable with the given range. + * Adds an integer meta variable with the given range with two layers (a 'normal' and a 'primed' one). * * @param variableName The name of the new variable. * @param low The lowest value of the range of the variable. * @param high The highest value of the range of the variable. */ std::pair addMetaVariable(std::string const& variableName, int_fast64_t low, int_fast64_t high, boost::optional> const& position = boost::none); + + /*! + * Creates a meta variable with the given number of layers. + * + * @param variableName The name of the variable. + * @param numberOfLayers The number of layers of this variable (must be greater or equal 1). + */ + std::vector addMetaVariable(std::string const& variableName, int_fast64_t low, int_fast64_t high, uint64_t numberOfLayers, boost::optional> const& position = boost::none); /*! - * Adds a boolean meta variable. + * Adds a boolean meta variable with two layers (a 'normal' and a 'primed' one). * * @param variableName The name of the new variable. */ std::pair addMetaVariable(std::string const& variableName, boost::optional> const& position = boost::none); + /*! + * Creates a meta variable with the given number of layers. + * + * @param variableName The name of the variable. + * @param numberOfLayers The number of layers of this variable (must be greater or equal 1). + */ + std::vector addMetaVariable(std::string const& variableName, uint64_t numberOfLayers, boost::optional> const& position = boost::none); + /*! * Retrieves the names of all meta variables that have been added to the manager. * diff --git a/src/storm/storage/dd/cudd/InternalCuddDdManager.cpp b/src/storm/storage/dd/cudd/InternalCuddDdManager.cpp index 33ecb6fe4..3f4986393 100644 --- a/src/storm/storage/dd/cudd/InternalCuddDdManager.cpp +++ b/src/storm/storage/dd/cudd/InternalCuddDdManager.cpp @@ -61,22 +61,24 @@ namespace storm { return InternalAdd(this, cuddManager.constant(value)); } - std::pair, InternalBdd> InternalDdManager::createNewDdVariablePair(boost::optional const& position) { - std::pair, InternalBdd> result; + std::vector> InternalDdManager::createDdVariables(uint64_t numberOfLayers, boost::optional const& position) { + std::vector> result; if (position) { - result.first = InternalBdd(this, cuddManager.bddNewVarAtLevel(position.get())); - result.second = InternalBdd(this, cuddManager.bddNewVarAtLevel(position.get() + 1)); + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + result.emplace_back(InternalBdd(this, cuddManager.bddNewVarAtLevel(position.get() + layer))); + } } else { - result.first = InternalBdd(this, cuddManager.bddVar()); - result.second = InternalBdd(this, cuddManager.bddVar()); + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + result.emplace_back(InternalBdd(this, cuddManager.bddVar())); + } } // Connect the two variables so they are not 'torn apart' during dynamic reordering. - cuddManager.MakeTreeNode(result.first.getIndex(), 2, MTR_FIXED); + cuddManager.MakeTreeNode(result.front().getIndex(), numberOfLayers, MTR_FIXED); // Keep track of the number of variables. - numberOfDdVariables += 2; + numberOfDdVariables += numberOfLayers; return result; } diff --git a/src/storm/storage/dd/cudd/InternalCuddDdManager.h b/src/storm/storage/dd/cudd/InternalCuddDdManager.h index 29156e101..17d715206 100644 --- a/src/storm/storage/dd/cudd/InternalCuddDdManager.h +++ b/src/storm/storage/dd/cudd/InternalCuddDdManager.h @@ -76,13 +76,13 @@ namespace storm { InternalAdd getConstant(ValueType const& value) const; /*! - * Creates a new pair of DD variables and returns the two cubes as a result. + * Creates new layered DD variables and returns the cubes as a result. * - * @param position An optional position at which to insert the new variable pair. This may only be given, if - * the manager supports ordered insertion. - * @return The two cubes belonging to the DD variables. + * @param position An optional position at which to insert the new variable. This may only be given, if the + * manager supports ordered insertion. + * @return The cubes belonging to the DD variables. */ - std::pair, InternalBdd> createNewDdVariablePair(boost::optional const& position = boost::none); + std::vector> createDdVariables(uint64_t numberOfLayers, boost::optional const& position = boost::none); /*! * Checks whether this manager supports the ordered insertion of variables, i.e. inserting variables at diff --git a/src/storm/storage/dd/sylvan/InternalSylvanDdManager.cpp b/src/storm/storage/dd/sylvan/InternalSylvanDdManager.cpp index 9211b4bd1..7fa07ebb0 100644 --- a/src/storm/storage/dd/sylvan/InternalSylvanDdManager.cpp +++ b/src/storm/storage/dd/sylvan/InternalSylvanDdManager.cpp @@ -126,13 +126,17 @@ namespace storm { } #endif - std::pair, InternalBdd> InternalDdManager::createNewDdVariablePair(boost::optional const& position) { + std::vector> InternalDdManager::createDdVariables(uint64_t numberOfLayers, boost::optional const& position) { STORM_LOG_THROW(!position, storm::exceptions::NotSupportedException, "The manager does not support ordered insertion."); - InternalBdd first = InternalBdd(this, sylvan::Bdd::bddVar(nextFreeVariableIndex)); - InternalBdd second = InternalBdd(this, sylvan::Bdd::bddVar(nextFreeVariableIndex + 1)); - nextFreeVariableIndex += 2; - return std::make_pair(first, second); + std::vector> result; + + for (uint64_t layer = 0; layer < numberOfLayers; ++layer) { + result.emplace_back(InternalBdd(this, sylvan::Bdd::bddVar(nextFreeVariableIndex))); + ++nextFreeVariableIndex; + } + + return result; } bool InternalDdManager::supportsOrderedInsertion() const { diff --git a/src/storm/storage/dd/sylvan/InternalSylvanDdManager.h b/src/storm/storage/dd/sylvan/InternalSylvanDdManager.h index a976afa27..77846dbe4 100644 --- a/src/storm/storage/dd/sylvan/InternalSylvanDdManager.h +++ b/src/storm/storage/dd/sylvan/InternalSylvanDdManager.h @@ -77,13 +77,13 @@ namespace storm { InternalAdd getConstant(ValueType const& value) const; /*! - * Creates a new pair of DD variables and returns the two cubes as a result. + * Creates new layered DD variables and returns the cubes as a result. * - * @param position An optional position at which to insert the new variable pair. This may only be given, if - * the manager supports ordered insertion. - * @return The two cubes belonging to the DD variables. + * @param position An optional position at which to insert the new variable. This may only be given, if the + * manager supports ordered insertion. + * @return The cubes belonging to the DD variables. */ - std::pair, InternalBdd> createNewDdVariablePair(boost::optional const& position = boost::none); + std::vector> createDdVariables(uint64_t numberOfLayers, boost::optional const& position = boost::none); /*! * Checks whether this manager supports the ordered insertion of variables, i.e. inserting variables at diff --git a/src/storm/utility/dd.cpp b/src/storm/utility/dd.cpp index cf7a9add6..d1c75aeb4 100644 --- a/src/storm/utility/dd.cpp +++ b/src/storm/utility/dd.cpp @@ -1,8 +1,11 @@ #include "storm/utility/dd.h" +#include "storm/storage/dd/DdManager.h" #include "storm/storage/dd/Add.h" #include "storm/storage/dd/Bdd.h" +#include "storm/adapters/CarlAdapter.h" + #include "storm/utility/macros.h" namespace storm { @@ -42,9 +45,37 @@ namespace storm { return reachableStates; } + template + storm::dd::Add getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs) { + storm::dd::Add result = ddManager.template getAddOne(); + for (auto const& pair : rowColumnMetaVariablePairs) { + result *= ddManager.template getIdentity(pair.first).equals(ddManager.template getIdentity(pair.second)).template toAdd(); + result *= ddManager.getRange(pair.first).template toAdd() * ddManager.getRange(pair.second).template toAdd(); + } + return result; + } + + template + storm::dd::Bdd getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs) { + storm::dd::Bdd diagonal = ddManager.getBddOne(); + for (auto const& pair : rowColumnMetaVariablePairs) { + diagonal &= ddManager.template getIdentity(pair.first).equals(ddManager.template getIdentity(pair.second)); + diagonal &= ddManager.getRange(pair.first) && ddManager.getRange(pair.second); + } + return diagonal; + } + template storm::dd::Bdd computeReachableStates(storm::dd::Bdd const& initialStates, storm::dd::Bdd const& transitions, std::set const& rowMetaVariables, std::set const& columnMetaVariables); template storm::dd::Bdd computeReachableStates(storm::dd::Bdd const& initialStates, storm::dd::Bdd const& transitions, std::set const& rowMetaVariables, std::set const& columnMetaVariables); - + + template storm::dd::Add getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + template storm::dd::Add getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + + template storm::dd::Bdd getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + template storm::dd::Bdd getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + + template storm::dd::Add getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + } } } diff --git a/src/storm/utility/dd.h b/src/storm/utility/dd.h index 0085f08ae..65e079bf3 100644 --- a/src/storm/utility/dd.h +++ b/src/storm/utility/dd.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include "storm/storage/dd/DdType.h" @@ -9,8 +10,14 @@ namespace storm { class Variable; } namespace dd { + template + class DdManager; + template class Bdd; + + template + class Add; } namespace utility { @@ -19,6 +26,12 @@ namespace storm { template storm::dd::Bdd computeReachableStates(storm::dd::Bdd const& initialStates, storm::dd::Bdd const& transitions, std::set const& rowMetaVariables, std::set const& columnMetaVariables); + template + storm::dd::Add getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + + template + storm::dd::Bdd getRowColumnDiagonal(storm::dd::DdManager const& ddManager, std::vector> const& rowColumnMetaVariablePairs); + } } } diff --git a/src/storm/utility/solver.cpp b/src/storm/utility/solver.cpp index 5a8785781..7b0cc1f94 100644 --- a/src/storm/utility/solver.cpp +++ b/src/storm/utility/solver.cpp @@ -3,6 +3,7 @@ #include #include "storm/solver/SymbolicLinearEquationSolver.h" +#include "storm/solver/SymbolicEliminationLinearEquationSolver.h" #include "storm/solver/SymbolicMinMaxLinearEquationSolver.h" #include "storm/solver/SymbolicGameSolver.h" #include "storm/solver/GameSolver.h" @@ -27,7 +28,14 @@ namespace storm { template std::unique_ptr> SymbolicLinearEquationSolverFactory::create(storm::dd::Add const& A, storm::dd::Bdd const& allRows, std::set const& rowMetaVariables, std::set const& columnMetaVariables, std::vector> const& rowColumnMetaVariablePairs) const { - return std::unique_ptr>(new storm::solver::SymbolicLinearEquationSolver(A, allRows, rowMetaVariables, columnMetaVariables, rowColumnMetaVariablePairs)); + + storm::solver::EquationSolverType equationSolver = storm::settings::getModule().getEquationSolver(); + switch (equationSolver) { + case storm::solver::EquationSolverType::Elimination: return std::make_unique>(A, allRows, rowMetaVariables, columnMetaVariables, rowColumnMetaVariablePairs); + break; + default: + return std::make_unique>(A, allRows, rowMetaVariables, columnMetaVariables, rowColumnMetaVariablePairs); + } } template @@ -71,7 +79,7 @@ namespace storm { std::unique_ptr GurobiLpSolverFactory::create(std::string const& name) const { return LpSolverFactory::create(name, storm::solver::LpSolverTypeSelection::Gurobi); } - + std::unique_ptr Z3LpSolverFactory::create(std::string const& name) const { return LpSolverFactory::create(name, storm::solver::LpSolverTypeSelection::Z3); }