You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
265 lines
14 KiB
265 lines
14 KiB
#include "storm/solver/TopologicalLinearEquationSolver.h"
|
|
|
|
#include "storm/environment/solver/TopologicalSolverEnvironment.h"
|
|
|
|
#include "storm/utility/constants.h"
|
|
#include "storm/utility/vector.h"
|
|
#include "storm/exceptions/InvalidStateException.h"
|
|
#include "storm/exceptions/InvalidEnvironmentException.h"
|
|
#include "storm/exceptions/UnexpectedException.h"
|
|
|
|
namespace storm {
|
|
namespace solver {
|
|
|
|
template<typename ValueType>
|
|
TopologicalLinearEquationSolver<ValueType>::TopologicalLinearEquationSolver() : localA(nullptr), A(nullptr) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template<typename ValueType>
|
|
TopologicalLinearEquationSolver<ValueType>::TopologicalLinearEquationSolver(storm::storage::SparseMatrix<ValueType> const& A) : localA(nullptr), A(nullptr) {
|
|
this->setMatrix(A);
|
|
}
|
|
|
|
template<typename ValueType>
|
|
TopologicalLinearEquationSolver<ValueType>::TopologicalLinearEquationSolver(storm::storage::SparseMatrix<ValueType>&& A) : localA(nullptr), A(nullptr) {
|
|
this->setMatrix(std::move(A));
|
|
}
|
|
|
|
template<typename ValueType>
|
|
void TopologicalLinearEquationSolver<ValueType>::setMatrix(storm::storage::SparseMatrix<ValueType> const& A) {
|
|
localA.reset();
|
|
this->A = &A;
|
|
clearCache();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
void TopologicalLinearEquationSolver<ValueType>::setMatrix(storm::storage::SparseMatrix<ValueType>&& A) {
|
|
localA = std::make_unique<storm::storage::SparseMatrix<ValueType>>(std::move(A));
|
|
this->A = localA.get();
|
|
clearCache();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
storm::Environment TopologicalLinearEquationSolver<ValueType>::getEnvironmentForUnderlyingSolver(storm::Environment const& env, bool adaptPrecision) const {
|
|
storm::Environment subEnv(env);
|
|
subEnv.solver().setLinearEquationSolverType(env.solver().topological().getUnderlyingEquationSolverType(), env.solver().topological().isUnderlyingEquationSolverTypeSetFromDefault());
|
|
if (adaptPrecision) {
|
|
STORM_LOG_ASSERT(this->longestSccChainSize, "Did not compute the longest SCC chain size although it is needed.");
|
|
auto subEnvPrec = subEnv.solver().getPrecisionOfLinearEquationSolver(subEnv.solver().getLinearEquationSolverType());
|
|
subEnv.solver().setLinearEquationSolverPrecision(static_cast<storm::RationalNumber>(subEnvPrec.first.get() / storm::utility::convertNumber<storm::RationalNumber>(this->longestSccChainSize.get())));
|
|
}
|
|
return subEnv;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
bool TopologicalLinearEquationSolver<ValueType>::internalSolveEquations(Environment const& env, std::vector<ValueType>& x, std::vector<ValueType> const& b) const {
|
|
|
|
// For sound computations we need to increase the precision in each SCC
|
|
bool needAdaptPrecision = env.solver().isForceSoundness() && env.solver().getPrecisionOfLinearEquationSolver(env.solver().topological().getUnderlyingEquationSolverType()).first.is_initialized();
|
|
|
|
if (!this->sortedSccDecomposition || (needAdaptPrecision && !this->longestSccChainSize)) {
|
|
STORM_LOG_TRACE("Creating SCC decomposition.");
|
|
createSortedSccDecomposition(needAdaptPrecision);
|
|
}
|
|
|
|
// We do not need to adapt the precision if all SCCs are trivial (i.e., the system is acyclic)
|
|
needAdaptPrecision = needAdaptPrecision && (this->sortedSccDecomposition->size() != this->getMatrixRowCount());
|
|
|
|
storm::Environment sccSolverEnvironment = getEnvironmentForUnderlyingSolver(env, needAdaptPrecision);
|
|
|
|
STORM_LOG_INFO("Found " << this->sortedSccDecomposition->size() << " SCC(s). Average size is " << static_cast<double>(this->getMatrixRowCount()) / static_cast<double>(this->sortedSccDecomposition->size()) << ".");
|
|
if (this->longestSccChainSize) {
|
|
STORM_LOG_INFO("Longest SCC chain size is " << this->longestSccChainSize.get() << ".");
|
|
}
|
|
|
|
// Handle the case where there is just one large SCC
|
|
bool returnValue = true;
|
|
if (this->sortedSccDecomposition->size() == 1) {
|
|
returnValue = solveFullyConnectedEquationSystem(sccSolverEnvironment, x, b);
|
|
} else {
|
|
storm::storage::BitVector sccAsBitVector(x.size(), false);
|
|
for (auto const& scc : *this->sortedSccDecomposition) {
|
|
if (scc.size() == 1) {
|
|
returnValue = solveTrivialScc(*scc.begin(), x, b) && returnValue;
|
|
} else {
|
|
sccAsBitVector.clear();
|
|
for (auto const& state : scc) {
|
|
sccAsBitVector.set(state, true);
|
|
}
|
|
returnValue = solveScc(sccSolverEnvironment, sccAsBitVector, x, b) && returnValue;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!this->isCachingEnabled()) {
|
|
clearCache();
|
|
}
|
|
|
|
|
|
|
|
|
|
return returnValue;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
void TopologicalLinearEquationSolver<ValueType>::createSortedSccDecomposition(bool needLongestChainSize) const {
|
|
// Obtain the scc decomposition
|
|
this->sortedSccDecomposition = std::make_unique<storm::storage::StronglyConnectedComponentDecomposition<ValueType>>(*this->A, storm::storage::StronglyConnectedComponentDecompositionOptions().forceTopologicalSort().computeSccDepths(needLongestChainSize));
|
|
if (needLongestChainSize) {
|
|
this->longestSccChainSize = this->sortedSccDecomposition->getMaxSccDepth() + 1;
|
|
}
|
|
}
|
|
|
|
template<typename ValueType>
|
|
bool TopologicalLinearEquationSolver<ValueType>::solveTrivialScc(uint64_t const& sccState, std::vector<ValueType>& globalX, std::vector<ValueType> const& globalB) const {
|
|
ValueType& xi = globalX[sccState];
|
|
xi = globalB[sccState];
|
|
bool hasDiagonalEntry = false;
|
|
ValueType denominator;
|
|
for (auto const& entry : this->A->getRow(sccState)) {
|
|
if (entry.getColumn() == sccState) {
|
|
STORM_LOG_ASSERT(!storm::utility::isOne(entry.getValue()), "Diagonal entry of fix point system has value 1.");
|
|
hasDiagonalEntry = true;
|
|
denominator = storm::utility::one<ValueType>() - entry.getValue();
|
|
} else {
|
|
xi += entry.getValue() * globalX[entry.getColumn()];
|
|
}
|
|
}
|
|
|
|
if (hasDiagonalEntry) {
|
|
if (storm::utility::isZero(denominator)) {
|
|
STORM_LOG_THROW(storm::utility::isZero(xi), storm::exceptions::InvalidOperationException, "The equation system has no solution.");
|
|
} else {
|
|
xi /= denominator;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
bool TopologicalLinearEquationSolver<ValueType>::solveFullyConnectedEquationSystem(storm::Environment const& sccSolverEnvironment, std::vector<ValueType>& x, std::vector<ValueType> const& b) const {
|
|
if (!this->sccSolver) {
|
|
this->sccSolver = GeneralLinearEquationSolverFactory<ValueType>().create(sccSolverEnvironment);
|
|
this->sccSolver->setCachingEnabled(true);
|
|
this->sccSolver->setBoundsFromOtherSolver(*this);
|
|
if (this->sccSolver->getEquationProblemFormat(sccSolverEnvironment) == LinearEquationSolverProblemFormat::EquationSystem) {
|
|
// Convert the matrix to an equation system. Note that we need to insert diagonal entries.
|
|
storm::storage::SparseMatrix<ValueType> eqSysA(*this->A, true);
|
|
eqSysA.convertToEquationSystem();
|
|
this->sccSolver->setMatrix(std::move(eqSysA));
|
|
} else {
|
|
this->sccSolver->setMatrix(*this->A);
|
|
}
|
|
}
|
|
return this->sccSolver->solveEquations(sccSolverEnvironment, x, b);
|
|
}
|
|
|
|
template<typename ValueType>
|
|
bool TopologicalLinearEquationSolver<ValueType>::solveScc(storm::Environment const& sccSolverEnvironment, storm::storage::BitVector const& scc, std::vector<ValueType>& globalX, std::vector<ValueType> const& globalB) const {
|
|
|
|
// Set up the SCC solver
|
|
if (!this->sccSolver) {
|
|
this->sccSolver = GeneralLinearEquationSolverFactory<ValueType>().create(sccSolverEnvironment);
|
|
this->sccSolver->setCachingEnabled(true);
|
|
}
|
|
|
|
// Matrix
|
|
bool asEquationSystem = this->sccSolver->getEquationProblemFormat(sccSolverEnvironment) == LinearEquationSolverProblemFormat::EquationSystem;
|
|
storm::storage::SparseMatrix<ValueType> sccA = this->A->getSubmatrix(true, scc, scc, asEquationSystem);
|
|
if (asEquationSystem) {
|
|
sccA.convertToEquationSystem();
|
|
}
|
|
// std::cout << "Solving SCC " << scc << std::endl;
|
|
// std::cout << "Matrix is " << sccA << std::endl;
|
|
this->sccSolver->setMatrix(std::move(sccA));
|
|
|
|
// x Vector
|
|
auto sccX = storm::utility::vector::filterVector(globalX, scc);
|
|
|
|
// b Vector
|
|
std::vector<ValueType> sccB;
|
|
sccB.reserve(scc.getNumberOfSetBits());
|
|
for (auto const& row : scc) {
|
|
ValueType bi = globalB[row];
|
|
for (auto const& entry : this->A->getRow(row)) {
|
|
if (!scc.get(entry.getColumn())) {
|
|
bi += entry.getValue() * globalX[entry.getColumn()];
|
|
}
|
|
}
|
|
sccB.push_back(std::move(bi));
|
|
}
|
|
|
|
// lower/upper bounds
|
|
if (this->hasLowerBound(storm::solver::AbstractEquationSolver<ValueType>::BoundType::Global)) {
|
|
this->sccSolver->setLowerBound(this->getLowerBound());
|
|
} else if (this->hasLowerBound(storm::solver::AbstractEquationSolver<ValueType>::BoundType::Local)) {
|
|
this->sccSolver->setLowerBounds(storm::utility::vector::filterVector(this->getLowerBounds(), scc));
|
|
}
|
|
if (this->hasUpperBound(storm::solver::AbstractEquationSolver<ValueType>::BoundType::Global)) {
|
|
this->sccSolver->setUpperBound(this->getUpperBound());
|
|
} else if (this->hasUpperBound(storm::solver::AbstractEquationSolver<ValueType>::BoundType::Local)) {
|
|
this->sccSolver->setUpperBounds(storm::utility::vector::filterVector(this->getUpperBounds(), scc));
|
|
}
|
|
|
|
//std::cout << "rhs is " << storm::utility::vector::toString(sccB) << std::endl;
|
|
//std::cout << "x is " << storm::utility::vector::toString(sccX) << std::endl;
|
|
|
|
bool returnvalue = this->sccSolver->solveEquations(sccSolverEnvironment, sccX, sccB);
|
|
storm::utility::vector::setVectorValues(globalX, scc, sccX);
|
|
return returnvalue;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
LinearEquationSolverProblemFormat TopologicalLinearEquationSolver<ValueType>::getEquationProblemFormat(Environment const& env) const {
|
|
return LinearEquationSolverProblemFormat::FixedPointSystem;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
LinearEquationSolverRequirements TopologicalLinearEquationSolver<ValueType>::getRequirements(Environment const& env) const {
|
|
// Return the requirements of the underlying solver
|
|
return GeneralLinearEquationSolverFactory<ValueType>().getRequirements(getEnvironmentForUnderlyingSolver(env));
|
|
}
|
|
|
|
template<typename ValueType>
|
|
void TopologicalLinearEquationSolver<ValueType>::clearCache() const {
|
|
sortedSccDecomposition.reset();
|
|
longestSccChainSize = boost::none;
|
|
sccSolver.reset();
|
|
LinearEquationSolver<ValueType>::clearCache();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
uint64_t TopologicalLinearEquationSolver<ValueType>::getMatrixRowCount() const {
|
|
return this->A->getRowCount();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
uint64_t TopologicalLinearEquationSolver<ValueType>::getMatrixColumnCount() const {
|
|
return this->A->getColumnCount();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
std::unique_ptr<storm::solver::LinearEquationSolver<ValueType>> TopologicalLinearEquationSolverFactory<ValueType>::create(Environment const& env) const {
|
|
return std::make_unique<storm::solver::TopologicalLinearEquationSolver<ValueType>>();
|
|
}
|
|
|
|
template<typename ValueType>
|
|
std::unique_ptr<LinearEquationSolverFactory<ValueType>> TopologicalLinearEquationSolverFactory<ValueType>::clone() const {
|
|
return std::make_unique<TopologicalLinearEquationSolverFactory<ValueType>>(*this);
|
|
}
|
|
|
|
// Explicitly instantiate the linear equation solver.
|
|
template class TopologicalLinearEquationSolver<double>;
|
|
template class TopologicalLinearEquationSolverFactory<double>;
|
|
|
|
#ifdef STORM_HAVE_CARL
|
|
template class TopologicalLinearEquationSolver<storm::RationalNumber>;
|
|
template class TopologicalLinearEquationSolverFactory<storm::RationalNumber>;
|
|
|
|
template class TopologicalLinearEquationSolver<storm::RationalFunction>;
|
|
template class TopologicalLinearEquationSolverFactory<storm::RationalFunction>;
|
|
|
|
#endif
|
|
}
|
|
}
|