Fixed order of methods in wrap, and wrapped matrix and augmented_matrix (why were they not wrapped?)
parent
6b14e652ff
commit
868fc7f1e0
11
gtsam.h
11
gtsam.h
|
|
@ -955,12 +955,15 @@ virtual class JacobianFactor : gtsam::GaussianFactor {
|
|||
void print(string s) const;
|
||||
void printKeys(string s) const;
|
||||
bool equals(const gtsam::GaussianFactor& lf, double tol) const;
|
||||
bool empty() const;
|
||||
size_t size() const;
|
||||
Vector getb() const;
|
||||
double error(const gtsam::VectorValues& c) const;
|
||||
gtsam::GaussianConditional* eliminateFirst();
|
||||
gtsam::GaussianFactor* negate() const;
|
||||
gtsam::GaussianFactor* negate() const;
|
||||
bool empty() const;
|
||||
Vector getb() const;
|
||||
pair<Matrix, Vector> matrix() const;
|
||||
Matrix matrix_augmented() const;
|
||||
gtsam::GaussianConditional* eliminateFirst();
|
||||
gtsam::GaussianConditional* eliminate(size_t nrFrontals);
|
||||
};
|
||||
|
||||
virtual class HessianFactor : gtsam::GaussianFactor {
|
||||
|
|
|
|||
Loading…
Reference in New Issue