10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-13 16:55:26 +02:00

Don't use pseudo by default

This commit is contained in:
Thomas Applencourt 2015-05-02 15:14:50 +02:00
parent cdc9f46428
commit ae4bc3d71b

View File

@ -13,8 +13,8 @@ let spec =
~doc:"int Total charge of the molecule. Default is 0."
+> flag "m" (optional_with_default 1 int)
~doc:"int Spin multiplicity (2S+1) of the molecule. Default is 1."
+> flag "p" (optional_with_default 1 int)
~doc:"Using pseudo potentiel or not"
+> flag "p" (optional_with_default 0 int)
~doc:"Using pseudo. Default is not (aka 0)"
+> anon ("xyz_file" %: string)
;;