package owl

  1. Overview
  2. Docs
type int_array = int array
type spmat_record = {
  1. mutable m : int;
  2. mutable n : int;
  3. mutable i : int_array;
  4. mutable d : elt_array;
  5. mutable p : int_array;
  6. mutable nz : int;
  7. mutable typ : int;
  8. mutable h : (int, int) Hashtbl.t;
}

record definition for sparse matrix