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
8276b98c
Commit
8276b98c
authored
2 years ago
by
Julien Girard-Satabin
Browse files
Options
Downloads
Patches
Plain Diff
[SAVer] Correct type for dataset csv file.
parent
5ead8dda
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main.ml
+1
-1
1 addition, 1 deletion
src/main.ml
src/verification.ml
+1
-1
1 addition, 1 deletion
src/verification.ml
with
2 additions
and
2 deletions
src/main.ml
+
1
−
1
View file @
8276b98c
...
...
@@ -158,7 +158,7 @@ let verify_cmd =
in
let
dataset_csv
=
let
doc
=
"Dataset under CSV format. Currently only supported by SAVer."
in
Arg
.(
value
&
opt
(
some
string
)
None
&
info
[
"dataset-csv"
]
~
doc
)
Arg
.(
value
&
opt
(
some
file
)
None
&
info
[
"dataset-csv"
]
~
doc
)
in
let
doc
=
"Property verification of neural networks using external provers."
...
...
This diff is collapsed.
Click to expand it.
src/verification.ml
+
1
−
1
View file @
8276b98c
...
...
@@ -140,7 +140,7 @@ let answer_saver limit config task env prover dataset_csv =
else
Call_provers
.
Invalid
|
None
->
Call_provers
.
HighFailure
(* Any other answer than HighFailure should never happen as we do not
define anything in SAVer's driver *)
)
define anything in SAVer's driver
.
*)
)
|
_
->
assert
false
in
answer
...
...
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