From e4c04af617098d14fdf6ca3b34f3646121d4f5bc Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Thu, 8 Oct 2020 12:56:47 +0200 Subject: [PATCH] Added qcaml module --- qcaml/dune | 15 +++++++++++++++ qcaml/qcaml.ml | 10 ++++++++++ 2 files changed, 25 insertions(+) create mode 100644 qcaml/dune create mode 100644 qcaml/qcaml.ml diff --git a/qcaml/dune b/qcaml/dune new file mode 100644 index 0000000..fec9806 --- /dev/null +++ b/qcaml/dune @@ -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")) diff --git a/qcaml/qcaml.ml b/qcaml/qcaml.ml new file mode 100644 index 0000000..24178d0 --- /dev/null +++ b/qcaml/qcaml.ml @@ -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 + +