Matthias Volk
8 years ago
4 changed files with 104 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||||
|
#include "pla.h"
|
||||
|
#include "src/helpers.h"
|
||||
|
|
||||
|
typedef storm::modelchecker::parametric::SparseDtmcParameterLifting<storm::models::sparse::Dtmc<storm::RationalFunction>, double> PLAChecker; |
||||
|
typedef storm::storage::ParameterRegion<storm::RationalFunction> Region; |
||||
|
|
||||
|
// Thin wrappers
|
||||
|
void specifyFormula(std::shared_ptr<PLAChecker>& checker, std::shared_ptr<const storm::logic::Formula> const& formula) { |
||||
|
checker->specifyFormula(storm::modelchecker::CheckTask<storm::logic::Formula, storm::RationalFunction>(*formula, true)); |
||||
|
} |
||||
|
storm::modelchecker::parametric::RegionCheckResult checkRegion(std::shared_ptr<PLAChecker>& checker, Region& region) { |
||||
|
return checker->analyzeRegion(region, storm::modelchecker::parametric::RegionCheckResult::Unknown, true); |
||||
|
} |
||||
|
|
||||
|
// Define python bindings
|
||||
|
void define_pla(py::module& m) { |
||||
|
|
||||
|
// PLAChecker
|
||||
|
py::class_<PLAChecker, std::shared_ptr<PLAChecker>>(m, "SparseDtmcRegionModelChecker", "Region model checker for sparse DTMCs") |
||||
|
.def("__init__", [](PLAChecker& instance, std::shared_ptr<storm::models::sparse::Dtmc<storm::RationalFunction>> model) -> void { |
||||
|
new (&instance) PLAChecker(*model); |
||||
|
}) |
||||
|
//.def(py::init<storm::models::sparse::Dtmc<storm::RationalFunction>>)
|
||||
|
.def("specify_formula", &specifyFormula, "Specify formula", py::arg("formula")) |
||||
|
.def("check_region", &checkRegion, "Check region", py::arg("region")) |
||||
|
; |
||||
|
|
||||
|
// Region
|
||||
|
py::class_<Region, std::shared_ptr<Region>>(m, "ParameterRegion", "Parameter region") |
||||
|
.def("__init__", [](Region &instance, std::string const& regionString, std::set<Region::VariableType> const& variables) -> void { |
||||
|
new (&instance) Region(Region::parseRegion(regionString, variables)); |
||||
|
}) |
||||
|
//.def(py::init<Region::VariableSubstitutionType &, Region::VariableSubstitutionType &>(), py::arg("lowerBounds"), py::arg("upperBounds"))
|
||||
|
//.def("result", &Region::getCheckResult, "Get check result")
|
||||
|
; |
||||
|
|
||||
|
// RegionCheckResult
|
||||
|
py::enum_<storm::modelchecker::parametric::RegionCheckResult>(m, "RegionCheckResult", "Types of region check results") |
||||
|
.value("EXISTSSAT", storm::modelchecker::parametric::RegionCheckResult::ExistsSat) |
||||
|
.value("EXISTSVIOLATED", storm::modelchecker::parametric::RegionCheckResult::ExistsViolated) |
||||
|
.value("EXISTSBOTH", storm::modelchecker::parametric::RegionCheckResult::ExistsBoth) |
||||
|
.value("CENTERSAT", storm::modelchecker::parametric::RegionCheckResult::CenterSat) |
||||
|
.value("CENTERVIOLATED", storm::modelchecker::parametric::RegionCheckResult::CenterViolated) |
||||
|
.value("ALLSAT", storm::modelchecker::parametric::RegionCheckResult::AllSat) |
||||
|
.value("ALLVIOLATED", storm::modelchecker::parametric::RegionCheckResult::AllViolated) |
||||
|
.value("UNKNOWN", storm::modelchecker::parametric::RegionCheckResult::Unknown) |
||||
|
.def("__str__", &streamToString<storm::modelchecker::parametric::RegionCheckResult>) |
||||
|
; |
||||
|
} |
@ -0,0 +1,8 @@ |
|||||
|
#ifndef PYTHON_CORE_PLA_H_ |
||||
|
#define PYTHON_CORE_PLA_H_ |
||||
|
|
||||
|
#include "common.h" |
||||
|
|
||||
|
void define_pla(py::module& m); |
||||
|
|
||||
|
#endif /* PYTHON_CORE_PLA_H_ */ |
@ -0,0 +1,45 @@ |
|||||
|
import stormpy |
||||
|
import stormpy.logic |
||||
|
from helpers.helper import get_example_path |
||||
|
|
||||
|
class TestModelChecking: |
||||
|
def test_pla(self): |
||||
|
import pycarl |
||||
|
program = stormpy.parse_prism_program(get_example_path("pdtmc", "brp16_2.pm")) |
||||
|
prop = "P<=0.84 [F s=5 ]" |
||||
|
formulas = stormpy.parse_properties_for_prism_program(prop, program) |
||||
|
model = stormpy.build_parametric_model(program, formulas) |
||||
|
assert model.nr_states == 613 |
||||
|
assert model.nr_transitions == 803 |
||||
|
assert model.model_type == stormpy.ModelType.DTMC |
||||
|
assert model.has_parameters |
||||
|
checker = stormpy.SparseDtmcRegionModelChecker(model) |
||||
|
checker.specify_formula(formulas[0].raw_formula) |
||||
|
parameters = model.collect_probability_parameters() |
||||
|
assert len(parameters) == 2 |
||||
|
#if str(parameters[0]) == "pL": |
||||
|
# pL = parameters[0] |
||||
|
# pK = parameters[1] |
||||
|
#else: |
||||
|
# pK = parameters[0] |
||||
|
# pL = parameters[1] |
||||
|
#assert str(pL) == "pL" |
||||
|
#assert str(pK) == "pK" |
||||
|
#lowerBounds = {pL: 0.7, pK: 0.75} |
||||
|
#upperBounds = {pL: 0.9, pK: 0.95} |
||||
|
#region = stormpy.ParameterRegion(lowerBounds, upperBounds) |
||||
|
region = stormpy.ParameterRegion("0.7<=pL<=0.9,0.75<=pK<=0.95", parameters) |
||||
|
result = checker.check_region(region) |
||||
|
assert result == stormpy.RegionCheckResult.ALLSAT |
||||
|
#lowerBounds = {pL: 0.4, pK: 0.75} |
||||
|
#upperBounds = {pL: 0.65, pK: 0.95} |
||||
|
#region = stormpy.ParameterRegion(lowerBounds, upperBounds) |
||||
|
region = stormpy.ParameterRegion("0.4<=pL<=0.65,0.75<=pK<=0.95", parameters) |
||||
|
result = checker.check_region(region) |
||||
|
assert result == stormpy.RegionCheckResult.EXISTSBOTH |
||||
|
#lowerBounds = {pL: 0.1, pK: 0.2} |
||||
|
#upperBounds = {pL: 0.73, pK: 0.715} |
||||
|
#region = stormpy.ParameterRegion(lowerBounds, upperBounds) |
||||
|
region = stormpy.ParameterRegion("0.1<=pL<=0.73,0.2<=pK<=0.715", parameters) |
||||
|
result = checker.check_region(region) |
||||
|
assert result == stormpy.RegionCheckResult.ALLVIOLATED |
Write
Preview
Loading…
Cancel
Save
Reference in new issue