Browse Source

added function to check whether a vector has a zero element

tempestpy_adaptions
TimQu 7 years ago
parent
commit
fbce6a4795
  1. 5
      src/storm/utility/vector.h

5
src/storm/utility/vector.h

@ -1120,6 +1120,11 @@ namespace storm {
bool hasNonZeroEntry(std::vector<T> const& v){
return std::any_of(v.begin(), v.end(), [](T value){return !storm::utility::isZero(value);});
}
template<typename T>
bool hasZeroEntry(std::vector<T> const& v){
return std::any_of(v.begin(), v.end(), [](T value){return storm::utility::isZero(value);});
}
inline std::set<storm::RationalFunctionVariable> getVariables(std::vector<storm::RationalFunction> const& vector) {
std::set<storm::RationalFunctionVariable> result;

Loading…
Cancel
Save