Skip to content
Snippets Groups Projects
Commit 8276b98c authored by Julien Girard-Satabin's avatar Julien Girard-Satabin
Browse files

[SAVer] Correct type for dataset csv file.

parent 5ead8dda
No related branches found
No related tags found
No related merge requests found
......@@ -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."
......
......@@ -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
......
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