Skip to content

Commit

Permalink
make picosat errors more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
cfinucane committed Apr 3, 2014
1 parent aa527fc commit fb5869c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/cores/coreUtils.py
Expand Up @@ -143,8 +143,10 @@ def stripLTLLine(line, useNext=False):
return line

def subprocessReadThread(fd, out):
for line in fd:
out.append(line)
for line in fd:
out.append(line)
if "expected" in line:
logging.error(line)


def findGuiltyLTLConjunctsWrapper(x):
Expand Down

0 comments on commit fb5869c

Please sign in to comment.