Skip to content

Commit

Permalink
improved run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusRabe committed Mar 16, 2019
1 parent 2bcf0e0 commit 6151c48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ def get_paths_from_categories(categories, directory):
omitted_files = 0
detected_files = 0
for filename in filenames:
if filename.endswith('qdimacs.gz') or \
filename.endswith('aag') or \
filename.endswith('aig') or \
filename.endswith('qdimacs'):
if filename.endswith('.qdimacs.gz') or \
filename.endswith('.aag') or \
filename.endswith('.aig') or \
filename.endswith('.qdimacs'):

paths[os.path.join(dirpath,filename)] = (os.path.join(dirpath,filename), 30)
detected_files += 1
Expand Down

0 comments on commit 6151c48

Please sign in to comment.