10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 23:22:07 +02:00
QCaml/common
2020-12-27 13:43:55 +01:00
..
lib Added Charge.org 2020-12-27 13:43:55 +01:00
test permtutations -> permutations 2020-12-26 01:54:39 +01:00
angular_momentum.org Added Charge.org 2020-12-27 13:43:55 +01:00
bitstring.org Added Charge.org 2020-12-27 13:43:55 +01:00
charge.org Added Charge.org 2020-12-27 13:43:55 +01:00
README.org Added org-mode files in common 2020-12-26 01:47:55 +01:00

Common

elisp:(org-babel-tangle)

This directory contains many utility functions used by all the other directories.

Dune files

Headers

(library
(library

Library

General information

(name common)
(public_name qcaml.common)
(synopsis "General utilities used in all QCaml libraries.")
(name test_common)
(synopsis "Test for common library")

Dependencies

(libraries
   str
   zarith
   getopt
)
(libraries
alcotest
qcaml.common
)

Extra C files

The math_functions file contains small C snippets to add missing functionalities to OCaml, such as support for the popcnt instruction.

(c_names
math_functions
)
(c_flags (:standard)
-Ofast -march=native -fPIC
)

Footers

)
)