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.
20 lines
798 B
20 lines
798 B
#include "src/solver/stateelimination/EquationSystemEliminator.h"
|
|
|
|
namespace storm {
|
|
namespace solver {
|
|
namespace stateelimination {
|
|
|
|
template<typename ValueType>
|
|
EquationSystemEliminator<ValueType>::EquationSystemEliminator(storm::storage::FlexibleSparseMatrix<ValueType>& matrix, storm::storage::FlexibleSparseMatrix<ValueType>& transposedMatrix) : EliminatorBase<ValueType, ScalingMode::Divide>(matrix, transposedMatrix) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template class EquationSystemEliminator<double>;
|
|
|
|
#ifdef STORM_HAVE_CARL
|
|
template class EquationSystemEliminator<storm::RationalNumber>;
|
|
template class EquationSystemEliminator<storm::RationalFunction>;
|
|
#endif
|
|
}
|
|
}
|
|
}
|