mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
Added qcaml module
This commit is contained in:
parent
c1433be7f8
commit
e4c04af617
15
qcaml/dune
Normal file
15
qcaml/dune
Normal 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
10
qcaml/qcaml.ml
Normal 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user