Browse Source

Merge branch 'master' into almostsurepomdp

refactoring
Sebastian Junges 5 years ago
parent
commit
fc61bd2b15
  1. 2
      src/core/counterexample.cpp
  2. 1
      src/storage/bitvector.cpp

2
src/core/counterexample.cpp

@ -9,7 +9,7 @@ using namespace storm::counterexamples;
// Define python bindings
void define_counterexamples(py::module& m) {
using FlatSet = boost::container::flat_set<unsigned long long, std::__1::less<unsigned long long>, boost::container::new_allocator<unsigned long long>>;
using FlatSet = boost::container::flat_set<uint64_t, std::less<uint64_t>, boost::container::new_allocator<uint64_t>>;
py::class_<FlatSet>(m, "FlatSet", "Container to pass to program")
.def(py::init<>())

1
src/storage/bitvector.cpp

@ -50,7 +50,6 @@ void define_bitvector(py::module& m) {
.def("__str__", &streamToString<BitVector>)
// TODO (when needed): iterator
;
}
Loading…
Cancel
Save