Skip to content

Commit

Permalink
Added satisfiability to logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Dae Heun Koh committed Mar 7, 2024
1 parent d71b317 commit 7626aa8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions analysis/producers/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,14 @@ def matched(ia):
out['matched'] = ia.matched
return out

@staticmethod
@tag('reco')
def satisfiability(ia):
out = {'satisfiability': -1.0}
if ia is not None:
out['satisfiability'] = ia.satisfiability
return out

@staticmethod
def is_principal_match(ia):
out = {'is_principal_match': False}
Expand Down

0 comments on commit 7626aa8

Please sign in to comment.