Browse Source

fixed exceptions

tempestpy_adaptions
hannah 3 years ago
committed by Stefan Pranger
parent
commit
d21d2ca7e6
  1. 13
      src/storm/automata/APSet.cpp
  2. 2
      src/storm/automata/LTL2DeterministicAutomaton.cpp

13
src/storm/automata/APSet.cpp

@ -1,5 +1,7 @@
#include "storm/automata/APSet.h"
#include "storm/exceptions/UnexpectedException.h"
#include "storm/utility/macros.h"
#include <string>
#include <exception>
@ -20,13 +22,12 @@ namespace storm {
}
void APSet::add(const std::string& ap) {
if (size() >= MAX_APS)
throw std::runtime_error("Set of atomic proposition size is limited to " + std::to_string(MAX_APS));
STORM_LOG_THROW(size() < MAX_APS, storm::exceptions::UnexpectedException, "Set of atomic proposition size is limited to " << std::to_string(MAX_APS));
unsigned int index = size();
bool fresh = ap_to_index.insert(std::make_pair(ap, index)).second;
if (!fresh)
throw std::runtime_error("Duplicate atomic proposition '" + ap + "' in APSet");
STORM_LOG_THROW(fresh, storm::exceptions::UnexpectedException,"Duplicate atomic proposition '" << ap << "' in APSet");
index_to_ap.push_back(ap);
}
@ -54,9 +55,7 @@ namespace storm {
}
APSet::alphabet_element APSet::elementAddAP(alphabet_element element, unsigned int ap) const {
if (ap >= size()) {
throw std::runtime_error("AP out of range");
}
STORM_LOG_THROW(ap < size(), storm::exceptions::UnexpectedException, "AP out of range");
return element | (1ul << ap);
}

2
src/storm/automata/LTL2DeterministicAutomaton.cpp

@ -15,8 +15,6 @@
#include "spot/twaalgos/translate.hh"
#include "spot/twaalgos/hoa.hh"
#include "spot/twaalgos/totgba.hh"
#include "spot/twaalgos/toparity.hh"
#include "spot/twa/acc.hh"
#endif
namespace storm {

Loading…
Cancel
Save