Added qcaml module

This commit is contained in:
Anthony Scemama 2020-10-08 12:56:47 +02:00
parent c1433be7f8
commit e4c04af617
2 changed files with 25 additions and 0 deletions

15
qcaml/dune Normal file
View File

@ -0,0 +1,15 @@
; name = name of the supermodule that will wrap all source files as submodules
; public_name = name of the library for ocamlfind and opam
(library
(name qcaml)
(public_name qcaml)
(libraries
qcaml.common
qcaml.particles
qcaml.gaussian_basis
qcaml.gaussian_integrals
qcaml.operators
qcaml.ao_basis
qcaml.simulation
)
(synopsis "Main QCaml entry point"))

10
qcaml/qcaml.ml Normal file
View File

@ -0,0 +1,10 @@
module Ao_basis = Qcaml_ao_basis
module Common = Qcaml_common
module Gaussian_basis = Qcaml_gaussian_basis
module Gaussian_integrals = Qcaml_gaussian_integrals
module Linear_algebra = Qcaml_linear_algebra
module Operators = Qcaml_operators
module Particles = Qcaml_particles
module Simulation = Qcaml_simulation