Merge pull request #2064 from jmackay2/build_fix

Fix the build for example Hybrid City 10000
release/4.3a0
Varun Agrawal 2025-03-22 13:45:12 -04:00 committed by GitHub
commit b8dbcba743
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ class Experiment {
gttic_(SmootherUpdate);
clock_t beforeUpdate = clock();
auto linearized = newFactors_.linearize(initial_);
smoother_.update(*linearized, maxNrHypotheses);
smoother_.update(*linearized, initial_);
allFactors_.push_back(newFactors_);
newFactors_.resize(0);
clock_t afterUpdate = clock();
@ -313,4 +313,4 @@ int main(int argc, char* argv[]) {
experiment.run();
return 0;
}
}