Skip to content

Commit

Permalink
Fixed SMG model checking call in Smg class
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatfpmK committed Nov 25, 2024
1 parent 77dfa60 commit 765c2b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paynt/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, model):
def model_check_property(self, prop, alt=False):
formula = prop.game_formula if not alt else prop.game_formula_alt

result = payntbind.synthesis.smg_model_checking(self.model, formula,
result = payntbind.synthesis.model_check_smg(self.model, formula,
only_initial_states=False, set_produce_schedulers=True,
env=paynt.verification.property.Property.environment)

Expand Down

0 comments on commit 765c2b4

Please sign in to comment.