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

Public Member Functions

 MatrixElem (int r_, int c_)
 
bool operator< (const MatrixElem &other) const
 

Public Attributes

int r
 
int c
 

Detailed Description

Definition at line 35 of file marginal_covariance_cholesky.cpp.

Constructor & Destructor Documentation

g2o::MatrixElem::MatrixElem ( int  r_,
int  c_ 
)
inline

Member Function Documentation

bool g2o::MatrixElem::operator< ( const MatrixElem other) const
inline

Definition at line 39 of file marginal_covariance_cholesky.cpp.

References c, and r.

40  {
41  return c > other.c || (c == other.c && r > other.r);
42  }

Member Data Documentation

int g2o::MatrixElem::c
int g2o::MatrixElem::r

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