qmcchem/ocaml/qmcchem.ml

18 lines
470 B
OCaml

open Core
let command =
Command.group ~summary:"QMC=Chem command" [
"debug" , Qmcchem_debug.command ;
"edit" , Qmcchem_edit.command ;
"info" , Qmcchem_info.command ;
"md5" , Qmcchem_md5.command ;
"result", Qmcchem_result.command ;
"result-pdmc", Qmcchem_result_pdmc.command ;
"run" , Qmcchem_run.command ;
"stop" , Qmcchem_stop.command ;
]
let () =
Command.run command