Skip to content

Commit

Permalink
Merge pull request #50 from venaturum/norel_dev_log
Browse files Browse the repository at this point in the history
Change in norel regex for elapsed time
  • Loading branch information
venaturum authored Jul 9, 2024
2 parents a715bf7 + 37fc7ed commit 58d543b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gurobi_logtools/parsers/norel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class NoRelParser:
# Order is important in this list as regexes are checked in order
norel_elapsed = [
re.compile(
r"Elapsed time for NoRel heuristic:\s(?P<Time>\d+)s\s\(best\sbound\s(?P<BestBd>[^\s]+)\)"
r"Elapsed time for NoRel heuristic:\s(?P<Time>\d+)s\s\(best\sbound\s(?P<BestBd>[^\s]+)[\)|,.*]"
),
re.compile(r"Elapsed time for NoRel heuristic:\s(?P<Time>\d+)s"),
]
Expand Down

0 comments on commit 58d543b

Please sign in to comment.