Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes in storm. #164

Merged
merged 6 commits into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/logic/formulae.cpp
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
#include "storm/logic/CloneVisitor.h"
#include "storm/logic/LabelSubstitutionVisitor.h"
#include "storm/storage/expressions/Variable.h"
#include "storm/adapters/RationalNumberAdapter.h"


void define_formulae(py::module& m) {
2 changes: 2 additions & 0 deletions src/pomdp/quantitative_analysis.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include "quantitative_analysis.h"

#include <storm/adapters/RationalFunctionAdapter.h>
#include <storm/models/sparse/Pomdp.h>
#include <storm-pomdp/api/verification.h>

2 changes: 2 additions & 0 deletions src/pomdp/tracker.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "tracker.h"
#include "src/helpers.h"

#include <storm/adapters/RationalFunctionAdapter.h>
#include <storm-pomdp/generator/BeliefSupportTracker.h>
#include <storm-pomdp/generator/NondeterministicBeliefTracker.h>

1 change: 1 addition & 0 deletions src/storage/model.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "model.h"
#include "state.h"

#include "storm/adapters/RationalFunctionAdapter.h"
#include "storm/models/ModelBase.h"
#include "storm/models/sparse/Model.h"
#include "storm/models/sparse/Dtmc.h"

Unchanged files with check annotations Beta

from packaging.version import Version # Need to import here because otherwise packaging cannot be automatically installed as required dependency
storm_version, storm_commit = setup_helper.parse_storm_version(cmake_conf.STORM_VERSION)
if Version(storm_version) < Version(storm_min_version):
print('Stormpy - Error: Storm version {} from \'{}\' is not supported anymore!'.format(storm_version, storm_dir))

Check warning on line 82 in setup.py

GitHub Actions / Test on stable (Debug)

Stormpy is incompatible with stable version of Storm

Check warning on line 82 in setup.py

GitHub Actions / Test on stable (Release)

Stormpy is incompatible with stable version of Storm
print(" For more information, see https://moves-rwth.github.io/stormpy/installation.html#compatibility-of-stormpy-and-storm")
sys.exit(42) # Custom exit code which can be used for incompatible checks