10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-11 13:53:36 +02:00
QCaml/SCF/HartreeFock.ml
2019-02-26 12:05:14 +01:00

11 lines
228 B
OCaml

open Util
let make ?guess simulation =
if Electrons.multiplicity @@ Simulation.electrons simulation = 1 then
RHF.make ?guess simulation
else
ROHF.make ?guess simulation
let to_string = HartreeFock_type.to_string