File matrix_lil_binary.hpp

class BinaryLilMatrix : public IterableListOfListsDecorator<AllocatedListOfLists<uint32>>
#include <matrix_lil_binary.hpp>

A two-dimensional matrix that provides row-wise read and write access to binary values that are stored in a newly allocated sparse matrix in the list of lists (LIL) format.

Public Functions

inline BinaryLilMatrix(uint32 numRows, uint32 numCols)
Parameters:
  • numRows – The number of rows in the matrix

  • numCols – The number of columns in the matrix