# HG changeset patch # User Chris Cannam # Date 1384537486 0 # Node ID efff14fce5906478d499a34005cb1d5ef2c60e75 # Parent d32edf4ac35d395ea6f2339002052e722eac6528 Remove variant decorations; they're no longer needed with new smart typedefs diff -r d32edf4ac35d -r efff14fce590 src/may/matrix.yeti --- a/src/may/matrix.yeti Mon Nov 04 14:18:06 2013 +0000 +++ b/src/may/matrix.yeti Fri Nov 15 17:44:46 2013 +0000 @@ -44,15 +44,15 @@ vec = load may.vector; typedef opaque matrix_t = - DenseRows. array | // array of rows - DenseCols. array | // array of columns - SparseCSR. { + DenseRows array | // array of rows + DenseCols array | // array of columns + SparseCSR { .values is vec.vector_t, .indices is array, // column index of each value .pointers is array, // offset of first value in each row .extent is number // max possible index + 1, i.e. number of columns } | - SparseCSC. { + SparseCSC { .values is vec.vector_t, .indices is array, // row index of each value .pointers is array, // offset of first value in each column