Skip to content

Commit

Permalink
Fix crash with the --help option
Browse files Browse the repository at this point in the history
  • Loading branch information
ineol committed Jun 5, 2024
1 parent a15abfb commit e2e07c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coq/args.ml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let int_backend =
in
Arg.(
value
& opt (enum [ ("Coq", Some Limits.Coq); ("Mp", Some Limits.Mp) ]) None
& opt (enum [ ("Coq", Some Limits.Coq); ("Mp", Some Limits.Mp); ("auto", None) ]) None
& info [ "int_backend" ] ~docv:"INT_BACKEND" ~doc)

let roots : string list Term.t =
Expand Down

0 comments on commit e2e07c1

Please sign in to comment.