Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
497f8208
Commit
497f8208
authored
2 years ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
Use more appropriate exceptions for invalid command line arguments.
parent
53ed3303
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main.ml
+2
-2
2 additions, 2 deletions
src/main.ml
with
2 additions
and
2 deletions
src/main.ml
+
2
−
2
View file @
497f8208
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment