revert FactorIndices default argument to overloading for now
* FactorIndices default argument is currently not easily available in binding code * see https://github.com/borglab/gtsam/pull/1053#issuecomment-1019345941release/4.3a0
parent
a82ddcc4d4
commit
dbfc7bb495
|
@ -566,10 +566,13 @@ virtual class FixedLagSmoother {
|
|||
gtsam::FixedLagSmootherKeyTimestampMap timestamps() const;
|
||||
double smootherLag() const;
|
||||
|
||||
gtsam::FixedLagSmootherResult update(const gtsam::NonlinearFactorGraph &newFactors,
|
||||
const gtsam::Values &newTheta,
|
||||
const gtsam::FixedLagSmootherKeyTimestampMap ×tamps);
|
||||
gtsam::FixedLagSmootherResult update(const gtsam::NonlinearFactorGraph &newFactors,
|
||||
const gtsam::Values &newTheta,
|
||||
const gtsam::FixedLagSmootherKeyTimestampMap ×tamps,
|
||||
const gtsam::FactorIndices &factorsToRemove=gtsam::FactorIndices());
|
||||
const gtsam::FactorIndices &factorsToRemove);
|
||||
gtsam::Values calculateEstimate() const;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue