new method and wrapping for getNewFactorsIndices
parent
239a978086
commit
96c541b997
|
|
@ -175,6 +175,7 @@ struct ISAM2Result {
|
|||
/** Getters and Setters */
|
||||
size_t getVariablesRelinearized() const { return variablesRelinearized; }
|
||||
size_t getVariablesReeliminated() const { return variablesReeliminated; }
|
||||
FactorIndices getNewFactorsIndices() const { return newFactorsIndices; }
|
||||
size_t getCliques() const { return cliques; }
|
||||
double getErrorBefore() const { return errorBefore ? *errorBefore : std::nan(""); }
|
||||
double getErrorAfter() const { return errorAfter ? *errorAfter : std::nan(""); }
|
||||
|
|
|
|||
|
|
@ -682,6 +682,7 @@ class ISAM2Result {
|
|||
/** Getters and Setters for all properties */
|
||||
size_t getVariablesRelinearized() const;
|
||||
size_t getVariablesReeliminated() const;
|
||||
FactorIndices getNewFactorsIndices() const;
|
||||
size_t getCliques() const;
|
||||
double getErrorBefore() const;
|
||||
double getErrorAfter() const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue