Skip to content

Commit

Permalink
Fix runModels.py
Browse files Browse the repository at this point in the history
  • Loading branch information
glebbelov committed Aug 12, 2024
1 parent fd64cc0 commit e2006b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/end2end/scripts/python/runModels.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def runModels(directory, solvers : list,
print(",".join(notfound))
msg += "\nActually running {} test cases with solvers {}".format(len(modelList), solvernames)
if solvers:
if solvers[0].getNThreads(g):
if solvers[0].getNThreads():
msg += " using {} threads".format( solvers[0].getNThreads() )
msg += '.'
print(msg)
Expand Down

0 comments on commit e2006b0

Please sign in to comment.