Skip to content

Commit

Permalink
fix [partial-match] warning in psmt2_to_alt_ergo (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
hra687261 authored Sep 13, 2021
1 parent 2ca1a08 commit 384906b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/parsers/psmt2_to_alt_ergo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,9 @@ module Translate = struct
| Cmd_SetInfo _ -> not_supported "set-info"; acc
| Cmd_Push n -> translate_push_pop mk_push n (pos command) :: acc
| Cmd_Pop n -> translate_push_pop mk_pop n (pos command) :: acc
| Cmd_CheckAllSat _ -> not_supported "check-all-sat"; acc
| Cmd_Maximize _ -> not_supported "maximize"; acc
| Cmd_Minimize _ -> not_supported "minimize"; acc
| Cmd_Exit -> acc

let init () =
Expand Down

0 comments on commit 384906b

Please sign in to comment.