~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to extern/libmv/third_party/ceres/internal/ceres/partitioned_matrix_view.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 public:
61
61
  // matrix = [E F], where the matrix E contains the first
62
62
  // num_col_blocks_a column blocks.
63
 
  PartitionedMatrixView(const BlockSparseMatrixBase& matrix,
 
63
  PartitionedMatrixView(const BlockSparseMatrix& matrix,
64
64
                        int num_col_blocks_a);
65
65
  ~PartitionedMatrixView();
66
66
 
107
107
  BlockSparseMatrix* CreateBlockDiagonalMatrixLayout(int start_col_block,
108
108
                                                     int end_col_block) const;
109
109
 
110
 
  const BlockSparseMatrixBase& matrix_;
 
110
  const BlockSparseMatrix& matrix_;
111
111
  int num_row_blocks_e_;
112
112
  int num_col_blocks_e_;
113
113
  int num_col_blocks_f_;