Skip to content
Snippets Groups Projects
Commit 497f8208 authored by Michele Alberti's avatar Michele Alberti
Browse files

Use more appropriate exceptions for invalid command line arguments.

parent 53ed3303
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ let memlimit_of_string s = ...@@ -102,7 +102,7 @@ let memlimit_of_string s =
| [ v ], ([] | [ "M" ] | [ "MB" ]) -> Int.of_string v | [ v ], ([] | [ "M" ] | [ "MB" ]) -> Int.of_string v
| [ v ], ([ "G" ] | [ "GB" ]) -> Int.of_string v * 1000 | [ v ], ([ "G" ] | [ "GB" ]) -> Int.of_string v * 1000
| [ v ], ([ "T" ] | [ "TB" ]) -> Int.of_string v * 1000000 | [ v ], ([ "T" ] | [ "TB" ]) -> Int.of_string v * 1000000
| _ -> failwith "Unrecognized memory limit" | _ -> invalid_arg "Unrecognized memory limit"
let timelimit_of_string s = let timelimit_of_string s =
let s = String.strip s in let s = String.strip s in
...@@ -118,7 +118,7 @@ let timelimit_of_string s = ...@@ -118,7 +118,7 @@ let timelimit_of_string s =
| [ v ], ([] | [ "s" ]) -> Int.of_string v | [ v ], ([] | [ "s" ]) -> Int.of_string v
| [ v ], [ "m" ] -> Int.of_string v * 60 | [ v ], [ "m" ] -> Int.of_string v * 60
| [ v ], [ "h" ] -> Int.of_string v * 3600 | [ v ], [ "h" ] -> Int.of_string v * 3600
| _ -> failwith "Unrecognized time limit" | _ -> invalid_arg "Unrecognized time limit"
let verify format loadpath memlimit timelimit prover dataset_csv files = let verify format loadpath memlimit timelimit prover dataset_csv files =
let debug = log_level_is_debug () in let debug = log_level_is_debug () in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment