Browse Source

fixed spacing

refactoring
Sebastian Junges 6 years ago
parent
commit
5a16a60038
  1. 6
      src/core/counterexample.cpp

6
src/core/counterexample.cpp

@ -2,10 +2,13 @@
#include "storm/environment/Environment.h"
#include "storm-counterexamples/api/counterexamples.h"
using namespace storm::counterexamples;
// Define python bindings
void define_counterexamples(py::module& m) {
py::class_<boost::container::flat_set<uint_fast64_t>>(m, "FlatSet", "Container to pass to program")
.def(py::init<>())
.def("insert", [](boost::container::flat_set<uint_fast64_t>& flatset, uint64_t value) {flatset.insert(value);})
@ -22,9 +25,6 @@ void define_counterexamples(py::module& m) {
.def_readonly("model_checking_time", &CexGeneratorStats::modelCheckingTime)
.def_readonly("solver_time", &CexGeneratorStats::solverTime);
using CexGeneratorOptions = SMTMinimalLabelSetGenerator<double>::Options;
py::class_<CexGeneratorOptions>(m, "SMTCounterExampleGeneratorOptions", "Options for highlevel counterexample generation")
.def(py::init<>())

Loading…
Cancel
Save