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

Bugfix in parse_properties #198

Merged
merged 10 commits into from
Dec 16, 2024
2 changes: 1 addition & 1 deletion lib/stormpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ def parse_properties(properties, context=None, filters=None):
if context is None:
return core.parse_properties_without_context(properties, filters)
elif type(context) == core.SymbolicModelDescription:
if context.is_prism_program():
if context.is_prism_program:
return core.parse_properties_for_prism_program(properties, context.as_prism_program(), filters)
else:
return core.parse_properties_for_jani_program(properties, context.as_jani_model(), filters)
Expand Down
Loading