g2o
Public Member Functions | Public Attributes | List of all members
g2o::CSparseExt Struct Reference

Our C++ version of the csparse struct. More...

#include <linear_solver_csparse.h>

Inheritance diagram for g2o::CSparseExt:
Inheritance graph
[legend]
Collaboration diagram for g2o::CSparseExt:
Collaboration graph
[legend]

Public Member Functions

 CSparseExt ()
 
 ~CSparseExt ()
 

Public Attributes

int columnsAllocated
 

Detailed Description

Our C++ version of the csparse struct.

Definition at line 45 of file linear_solver_csparse.h.

Constructor & Destructor Documentation

g2o::CSparseExt::CSparseExt ( )
inline

Definition at line 47 of file linear_solver_csparse.h.

48  {
49  nzmax = 0;
50  m = 0;
51  n = 0;
52  p = 0;
53  i = 0;
54  x = 0;
55  nz = 0;
56  columnsAllocated = 0;
57  }
g2o::CSparseExt::~CSparseExt ( )
inline

Definition at line 58 of file linear_solver_csparse.h.

59  {
60  delete[] p;
61  delete[] i;
62  delete[] x;
63  }

Member Data Documentation

int g2o::CSparseExt::columnsAllocated

The documentation for this struct was generated from the following file: