10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 03:15:19 +02:00
qmcchem/ocaml/Qmcchem_stop.ml

25 lines
389 B
OCaml
Raw Normal View History

2015-12-19 02:35:13 +01:00
open Core.Std
let run ezfio_filename =
Ezfio.set_file ezfio_filename ;
Status.write Status.Stopping
let spec =
let open Command.Spec in
empty
+> anon ("ezfio_file" %: string)
let command =
Command.basic
~summary: "Stop a running calculation"
~readme:(fun () ->
"
Stop a running calculation
")
spec
(fun ezfio_file () -> run ezfio_file )