mirror of
https://github.com/YosysHQ/sby.git
synced 2026-01-19 10:43:20 +00:00
Update rIC3 return codes to include UNKNOWN status
This commit is contained in:
parent
5b2058c628
commit
5f78dd5b11
1 changed files with 1 additions and 1 deletions
|
|
@ -329,7 +329,7 @@ def run(mode, task, engine_idx, engine):
|
|||
if solver_args[0] == "pono":
|
||||
proc.retcodes = [0, 1, 255] # UNKNOWN = -1, FALSE = 0, TRUE = 1, ERROR = 2
|
||||
if solver_args[0] == "rIC3":
|
||||
proc.retcodes = [10, 20, 30] # FALSE = 10, TRUE = 20, ERROR = 30
|
||||
proc.retcodes = [10, 20, 30] # FALSE = 10, TRUE = 20, UNKNOWN = 30
|
||||
proc.output_callback = output_callback
|
||||
proc.register_exit_callback(exit_callback)
|
||||
common_state.running_procs += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue