Skip to content

Commit

Permalink
force store result only for the one-by-one evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Andriushchenko committed Jun 15, 2024
1 parent d57acf1 commit c1cf79c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions paynt/synthesizer/synthesizer_onebyone.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def synthesize_one(self, family):

def evaluate_all(self, family, prop, keep_value_only=False):

if not keep_value_only:
logger.debug("forcing keep_value_only=True for the one-by-one evaluation")
keep_value_only = True

evaluations = []
for hole_combination in family.all_combinations():
assignment = family.construct_assignment(hole_combination)
Expand Down

0 comments on commit c1cf79c

Please sign in to comment.