Home | History | Annotate | Download | only in ceres

Lines Matching refs:CompressedRowSparseMatrix

49 class CompressedRowSparseMatrix : public SparseMatrix {
57 explicit CompressedRowSparseMatrix(const TripletSparseMatrix& m);
70 CompressedRowSparseMatrix(int num_rows,
76 CompressedRowSparseMatrix(const double* diagonal, int num_rows);
78 virtual ~CompressedRowSparseMatrix();
101 void AppendRows(const CompressedRowSparseMatrix& m);
128 CompressedRowSparseMatrix* Transpose() const;
130 static CompressedRowSparseMatrix* CreateBlockDiagonalMatrix(
135 // and create a CompressedRowSparseMatrix corresponding to it.
148 static CompressedRowSparseMatrix* CreateOuterProductMatrixAndProgram(
149 const CompressedRowSparseMatrix& m,
156 static void ComputeOuterProduct(const CompressedRowSparseMatrix& m,
158 CompressedRowSparseMatrix* result);
175 CERES_DISALLOW_COPY_AND_ASSIGN(CompressedRowSparseMatrix);