diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-02-10 17:01:27 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-02-10 17:01:27 +0000 |
commit | be551edb0a4516c83363e242bdd0508d00b24b87 (patch) | |
tree | c0956f2868097ebc6e391f055891329a78f9c796 /otherlibs/bigarray/bigarray.ml | |
parent | a91206aa2f8e89e1d0e8bf8d238e2486f6466f61 (diff) |
Complex bigarrays
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4372 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/bigarray/bigarray.ml')
-rw-r--r-- | otherlibs/bigarray/bigarray.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/otherlibs/bigarray/bigarray.ml b/otherlibs/bigarray/bigarray.ml index c35cf03c7..1e871da57 100644 --- a/otherlibs/bigarray/bigarray.ml +++ b/otherlibs/bigarray/bigarray.ml @@ -31,6 +31,8 @@ type int64_elt type nativeint_elt type float32_elt type float64_elt +type complex32_elt +type complex64_elt (* Keep those constants in sync with the caml_bigarray_kind enumeration in bigarray.h *) @@ -46,6 +48,8 @@ let int64 = 7 let int = 8 let nativeint = 9 let char = int8_unsigned +let complex32 = 10 +let complex64 = 11 type 'a layout = int |