Skip to content

Commit

Permalink
fix property_copy()
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Andriushchenko committed Sep 18, 2024
1 parent a4b0af0 commit 0955c3e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions paynt/verification/property.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ def transform_until_to_eventually(self):
self.__init__(prop)

def property_copy(self):
formula_copy = self.formula.clone()
property_copy = stormpy.core.Property(self.name, formula_copy)
return property_copy
return stormpy.core.Property(self.name, self.property.raw_formula.clone())

def copy(self):
return Property(self.property_copy())
Expand Down

0 comments on commit 0955c3e

Please sign in to comment.