Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nikhilpim/medley_tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikhil Pimpalkhare authored and Nikhil Pimpalkhare committed Oct 12, 2020
2 parents 64ff562 + 275dd67 commit 1c3a06f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions medleysolver/compute_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_features(file_path,logic="",track=""):
g = z3.Goal()
g.add(z3.parse_smt2_file(file_path))
results = [z3.Probe(x)(g) for x in PROBES]
features = results
features = features + results

cache[file_path][logic][track] = features
return features
Expand All @@ -75,4 +75,4 @@ def get_check_sat(file_path):
line = line[:line.find(';')]
ret += line.count('check-sat')
cached_checksats[file_path] = ret
return ret
return ret

0 comments on commit 1c3a06f

Please sign in to comment.