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

12 lines
243 B
OCaml
Raw Normal View History

2018-02-23 18:44:31 +01:00
open Util
open Simulation
let make ?guess simulation =
if simulation.electrons.Electrons.multiplicity = 1 then
RHF.make ?guess simulation
else
invalid_arg "UHF or ROHF not implemented"
2018-05-30 18:07:05 +02:00
let to_string = HartreeFock_type.to_string