mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
12 lines
243 B
OCaml
12 lines
243 B
OCaml
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"
|
|
|
|
|
|
let to_string = HartreeFock_type.to_string
|