10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-10-06 00:06:11 +02:00
QCaml/SCF/HartreeFock.ml

11 lines
228 B
OCaml
Raw Normal View History

2018-02-23 18:44:31 +01:00
open Util
let make ?guess simulation =
2019-02-20 19:43:16 +01:00
if Electrons.multiplicity @@ Simulation.electrons simulation = 1 then
2018-02-23 18:44:31 +01:00
RHF.make ?guess simulation
else
2019-02-26 11:58:53 +01:00
ROHF.make ?guess simulation
2018-02-23 18:44:31 +01:00
2018-05-30 18:07:05 +02:00
let to_string = HartreeFock_type.to_string