Argument order of load changed

release/4.3a0
Richard Roberts 2010-01-26 20:31:25 +00:00
parent 9b62b326c9
commit 02210cc7e0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ namespace gtsam {
boost::tie(filename, noiseModel) = dataset(dataset_name);
// read graph and initial estimate
boost::tie(graph_, theta_) = load2D(filename, maxID, noiseModel, addNoise);
boost::tie(graph_, theta_) = load2D(filename, noiseModel, maxID, addNoise);
graph_->addPrior(theta_->begin()->first, theta_->begin()->second,
noiseModel::Unit::Create(3));