package owl

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file owl_linalg.ml

1
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 1 "src/owl/linalg/owl_linalg.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2019 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

(** 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 *)
OCaml

Innovation. Community. Security.