owl_linalg.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29# 1 "src/owl/linalg/owl_linalg.ml" (* * OWL - OCaml Scientific Computing * Copyright (c) 2016-2022 Liang Wang <liang@ocaml.xyz> *) (** Linear algebra: module aliases *) module Generic = struct include Owl_linalg_generic end module S = struct include Owl_linalg_s end module D = struct include Owl_linalg_d end module C = struct include Owl_linalg_c end module Z = struct include Owl_linalg_z end (* ends here *)